Lines Matching refs:OSSet

42 OSDefineMetaClassAndStructorsWithZone(OSSet, OSCollection,
44 OSMetaClassDefineReservedUnused(OSSet, 0);
45 OSMetaClassDefineReservedUnused(OSSet, 1);
46 OSMetaClassDefineReservedUnused(OSSet, 2);
47 OSMetaClassDefineReservedUnused(OSSet, 3);
48 OSMetaClassDefineReservedUnused(OSSet, 4);
49 OSMetaClassDefineReservedUnused(OSSet, 5);
50 OSMetaClassDefineReservedUnused(OSSet, 6);
51 OSMetaClassDefineReservedUnused(OSSet, 7);
57 OSSet::initWithCapacity(unsigned int inCapacity) in initWithCapacity()
72 OSSet::initWithObjects(const OSObject *inObjects[], in initWithObjects()
103 OSSet::initWithArray(const OSArray *inArray, in initWithArray()
115 OSSet::initWithSet(const OSSet *inSet, in initWithSet()
121 OSSharedPtr<OSSet>
122 OSSet::withCapacity(unsigned int capacity) in withCapacity()
124 OSSharedPtr<OSSet> me = OSMakeShared<OSSet>(); in withCapacity()
133 OSSharedPtr<OSSet>
134 OSSet::withObjects(const OSObject *objects[], in withObjects()
138 OSSharedPtr<OSSet> me = OSMakeShared<OSSet>(); in withObjects()
147 OSSharedPtr<OSSet>
148 OSSet::withArray(const OSArray *array, in withArray()
151 OSSharedPtr<OSSet> me = OSMakeShared<OSSet>(); in withArray()
160 OSSharedPtr<OSSet>
161 OSSet::withSet(const OSSet *set, in withSet()
164 OSSharedPtr<OSSet> me = OSMakeShared<OSSet>(); in withSet()
174 OSSet::free() in free()
184 OSSet::getCount() const in getCount()
190 OSSet::getCapacity() const in getCapacity()
196 OSSet::getCapacityIncrement() const in getCapacityIncrement()
202 OSSet::setCapacityIncrement(unsigned int increment) in setCapacityIncrement()
208 OSSet::ensureCapacity(unsigned int newCapacity) in ensureCapacity()
214 OSSet::flushCollection() in flushCollection()
221 OSSet::setObject(const OSMetaClassBase *anObject) in setObject()
232 OSSet::setObject(OSSharedPtr<const OSMetaClassBase> const& anObject) in setObject()
238 OSSet::merge(const OSArray * array) in merge()
259 OSSet::merge(const OSSet * set) in merge()
265 OSSet::removeObject(const OSMetaClassBase *anObject) in removeObject()
279 OSSet::removeObject(OSSharedPtr<const OSMetaClassBase> const& anObject) in removeObject()
286 OSSet::containsObject(const OSMetaClassBase *anObject) const in containsObject()
292 OSSet::member(const OSMetaClassBase *anObject) const in member()
306 OSSet::getAnyObject() const in getAnyObject()
312 OSSet::isEqualTo(const OSSet *aSet) const in isEqualTo()
347 OSSet::isEqualTo(const OSMetaClassBase *anObject) const in isEqualTo()
349 OSSet *otherSet; in isEqualTo()
351 otherSet = OSDynamicCast(OSSet, anObject); in isEqualTo()
360 OSSet::iteratorSize() const in iteratorSize()
366 OSSet::initIterator(void *inIterator) const in initIterator()
375 OSSet::getNextObjectForIterator(void *inIterator, OSObject **ret) const in getNextObjectForIterator()
390 OSSet::serialize(OSSerialize *s) const in serialize()
412 OSSet::setOptions(unsigned options, unsigned mask, void *) in setOptions()
423 OSSet::copyCollection(OSDictionary *cycleDict) in copyCollection()
427 OSSharedPtr<OSSet> newSet; in copyCollection()
443 newSet = OSSet::withCapacity(members->capacity); in copyCollection()