Searched refs:anObject (Results 1 - 14 of 14) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/c++/
H A DOSOrderedSet.h156 @param anObject The object to be placed into the collection.
159 virtual bool setObject(const OSMetaClassBase *anObject);
163 @param anObject The object to be placed into the collection.
166 virtual bool setFirstObject(const OSMetaClassBase *anObject);
170 @param anObject The object to be placed into the collection.
173 virtual bool setLastObject(const OSMetaClassBase *anObject);
178 @param anObject The object to remove from the set.
180 virtual void removeObject(const OSMetaClassBase *anObject);
185 @param anObject The object to be located.
188 virtual bool containsObject(const OSMetaClassBase *anObject) cons
[all...]
H A DOSArray.h177 @param anObject The object to add to the OSArray instance. The object will be retained automatically.
178 @result Returns true if the addition of 'anObject' was successful, false if not; failure usually results from failing to allocate the necessary memory.
180 virtual bool setObject(const OSMetaClassBase *anObject);
185 @param anObject The object to add to the OSArray instance. The object will be retained automatically.
186 @result Returns true if the addition of 'anObject' was successful, false if not.
188 virtual bool setObject(unsigned int index, const OSMetaClassBase *anObject);
202 @param anObject The object to be placed into the array.
204 virtual void replaceObject(unsigned int index, const OSMetaClassBase *anObject);
223 @param anObject The object to be compared against the receiver.
226 virtual bool isEqualTo(const OSMetaClassBase *anObject) cons
[all...]
H A DOSSet.h188 @param anObject The OSMetaClassBase derived object to be placed into the collection.
192 virtual bool setObject(const OSMetaClassBase *anObject);
211 @param anObject The OSMetaClassBase derived object to be removed from the collection.
214 virtual void removeObject(const OSMetaClassBase * anObject);
219 @param anObject The OSMetaClassBase derived object to be queried for in the collecion.
222 virtual bool containsObject(const OSMetaClassBase *anObject) const;
226 @param anObject The OSMetaClassBase derived object to be queried for in the collecion.
229 virtual bool member(const OSMetaClassBase *anObject) const;
247 @param anObject An object to be compared against the receiver.
250 virtual bool isEqualTo(const OSMetaClassBase *anObject) cons
[all...]
H A DOSDictionary.h215 @param anObject The object to be stored in the dictionary. It is automatically retained.
218 virtual bool setObject(const OSSymbol *aKey, const OSMetaClassBase *anObject);
223 @param anObject The object to be stored in the dictionary. It is automatically retained.
226 virtual bool setObject(const OSString *aKey, const OSMetaClassBase *anObject);
231 @param anObject The object to be stored in the dictionary. It is automatically retained.
234 virtual bool setObject(const char *aKey, const OSMetaClassBase *anObject);
304 @param anObject An object to be compared against the receiver.
307 virtual bool isEqualTo(const OSMetaClassBase *anObject) const;
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSOrderedSet.cpp167 bool OSOrderedSet::setObject(unsigned int index, const OSMetaClassBase *anObject) argument
172 if ((index > count) || !anObject)
175 if (containsObject(anObject))
187 array[index].obj = anObject;
189 anObject->taggedRetain(OSTypeID(OSCollection));
196 bool OSOrderedSet::setFirstObject(const OSMetaClassBase *anObject) argument
198 return( setObject(0, anObject));
201 bool OSOrderedSet::setLastObject(const OSMetaClassBase *anObject) argument
203 return( setObject( count, anObject));
210 bool OSOrderedSet::setObject(const OSMetaClassBase *anObject )
222 removeObject(const OSMetaClassBase *anObject) argument
[all...]
H A DOSSet.cpp196 bool OSSet::setObject(const OSMetaClassBase *anObject) argument
198 if (containsObject(anObject))
202 return members->setObject(anObject);
208 const OSMetaClassBase *anObject; local
211 for (int i = 0; (anObject = array->getObject(i)); i++)
212 if (setObject(anObject))
223 void OSSet::removeObject(const OSMetaClassBase *anObject) argument
228 if (probeObject == anObject) {
236 bool OSSet::containsObject(const OSMetaClassBase *anObject) const
238 return anObject
[all...]
H A DOSArray.cpp226 bool OSArray::setObject(const OSMetaClassBase *anObject) argument
228 return setObject(count, anObject);
231 bool OSArray::setObject(unsigned int index, const OSMetaClassBase *anObject) argument
236 if ((index > count) || !anObject)
248 array[index] = anObject;
249 anObject->taggedRetain(OSTypeID(OSCollection));
279 replaceObject(unsigned int index, const OSMetaClassBase *anObject) argument
283 if ((index >= count) || !anObject)
288 array[index] = anObject;
289 anObject
357 getNextIndexOfObject(const OSMetaClassBase * anObject, unsigned int index) const argument
[all...]
H A DOSDictionary.cpp307 setObject(const OSSymbol *aKey, const OSMetaClassBase *anObject) argument
309 if (!anObject || !aKey)
319 anObject->taggedRetain(OSTypeID(OSCollection));
320 dictionary[i].value = anObject;
334 anObject->taggedRetain(OSTypeID(OSCollection));
336 dictionary[count].value = anObject;
432 bool OSDictionary::setObject(const OSString *aKey, const OSMetaClassBase *anObject)
433 OBJECT_WRAP_2(setObject, OSSymbol::withString(aKey), anObject)
434 bool OSDictionary::setObject(const char *aKey, const OSMetaClassBase *anObject)
435 OBJECT_WRAP_2(setObject, OSSymbol::withCString(aKey), anObject)
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIORegistryEntry.h268 @param anObject The property value.
271 virtual bool setProperty(const OSSymbol * aKey, OSObject * anObject);
277 @param anObject The property value.
280 virtual bool setProperty(const OSString * aKey, OSObject * anObject);
286 @param anObject The property value.
289 virtual bool setProperty(const char * aKey, OSObject * anObject);
H A DIOCPU.h83 virtual bool setProperty(const OSSymbol *aKey, OSObject *anObject);
H A DIONVRAM.h138 virtual bool setProperty(const OSSymbol *aKey, OSObject *anObject);
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOCPU.cpp450 bool IOCPU::setProperty(const OSSymbol *aKey, OSObject *anObject) argument
455 stateStr = OSDynamicCast(OSString, anObject);
477 return super::setProperty(aKey, anObject);
H A DIONVRAM.cpp295 bool IODTNVRAM::setProperty(const OSSymbol *aKey, OSObject *anObject) argument
324 propObject = OSDynamicCast(OSBoolean, anObject);
328 propObject = OSDynamicCast(OSNumber, anObject);
332 propObject = OSDynamicCast(OSString, anObject);
336 propObject = OSDynamicCast(OSData, anObject);
338 tmpString = OSDynamicCast(OSString, anObject);
H A DIORegistryEntry.cpp511 IORegistryEntry::setProperty( const OSSymbol * aKey, OSObject * anObject) argument
518 OSCollection *coll = OSDynamicCast(OSCollection, anObject);
525 ret = getPropertyTable()->setObject( aKey, anObject );
583 IORegistryEntry::setProperty( const OSString * aKey, OSObject * anObject) argument
586 bool ret = setProperty( tmpKey, anObject );
593 IORegistryEntry::setProperty( const char * aKey, OSObject * anObject) argument
596 bool ret = setProperty( tmpKey, anObject );

Completed in 314 milliseconds