Lines Matching defs:nsSmallVoidArray

1146 // NOTE: nsSmallVoidArray elements MUST all have the low bit as 0.
1149 nsSmallVoidArray::nsSmallVoidArray()
1154 nsSmallVoidArray::~nsSmallVoidArray()
1163 nsSmallVoidArray&
1164 nsSmallVoidArray::operator=(nsSmallVoidArray& other)
1203 nsSmallVoidArray::GetArraySize() const
1213 nsSmallVoidArray::Count() const
1229 nsSmallVoidArray::ElementAt(PRInt32 aIndex) const
1247 nsSmallVoidArray::IndexOf(void* aPossibleElement) const
1265 nsSmallVoidArray::InsertElementAt(void* aElement, PRInt32 aIndex)
1268 NS_ASSERTION(!(PtrBits(aElement) & 0x1),"Attempt to add element with 0x1 bit set to nsSmallVoidArray");
1269 NS_ASSERTION(aElement != nsnull,"Attempt to add a NULL element to an nsSmallVoidArray");
1292 PRBool nsSmallVoidArray::InsertElementsAt(const nsVoidArray &other, PRInt32 aIndex)
1302 NS_ASSERTION(!(PtrBits(other.ElementAt(i)) & 0x1),"Attempt to add element with 0x1 bit set to nsSmallVoidArray");
1303 NS_ASSERTION(other.ElementAt(i) != nsnull,"Attempt to add a NULL element to an nsSmallVoidArray");
1333 nsSmallVoidArray::ReplaceElementAt(void* aElement, PRInt32 aIndex)
1335 NS_ASSERTION(!(PtrBits(aElement) & 0x1),"Attempt to add element with 0x1 bit set to nsSmallVoidArray");
1336 NS_ASSERTION(aElement != nsnull,"Attempt to add a NULL element to an nsSmallVoidArray");
1358 nsSmallVoidArray::AppendElement(void* aElement)
1360 NS_ASSERTION(!(PtrBits(aElement) & 0x1),"Attempt to add element with 0x1 bit set to nsSmallVoidArray");
1361 NS_ASSERTION(aElement != nsnull,"Attempt to add a NULL element to an nsSmallVoidArray");
1382 nsSmallVoidArray::RemoveElement(void* aElement)
1403 nsSmallVoidArray::RemoveElementAt(PRInt32 aIndex)
1426 nsSmallVoidArray::RemoveElementsAt(PRInt32 aIndex, PRInt32 aCount)
1448 nsSmallVoidArray::Clear()
1462 nsSmallVoidArray::SizeTo(PRInt32 aMin)
1490 nsSmallVoidArray::Compact()
1501 nsSmallVoidArray::Sort(nsVoidArrayComparatorFunc aFunc, void* aData)
1511 nsSmallVoidArray::EnumerateForwards(nsVoidArrayEnumFunc aFunc, void* aData)
1526 nsSmallVoidArray::EnumerateBackwards(nsVoidArrayEnumFunc aFunc, void* aData)
1541 nsSmallVoidArray::SetSingleChild(void* aChild)
1550 nsSmallVoidArray::SwitchToVector()