Searched refs:anArray (Results 1 - 2 of 2) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSArray.cpp112 bool OSArray::initWithArray(const OSArray *anArray, argument
115 if ( !anArray )
118 return initWithObjects((const OSObject **) anArray->array,
119 anArray->count, theCapacity);
312 bool OSArray::isEqualTo(const OSArray *anArray) const
316 if ( this == anArray )
319 if ( count != anArray->getCount() )
323 if ( !array[i]->isEqualTo(anArray->getObject(i)) )
/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/c++/
H A DOSArray.h122 @param anArray An instance of OSArray containing the references to objects which will be copied to the new instances of OSArray.
126 virtual bool initWithArray(const OSArray *anArray,
216 @param anArray The array object being compared against the receiver.
219 virtual bool isEqualTo(const OSArray *anArray) const;

Completed in 16 milliseconds