Searched refs:ObjectAssociationMap (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/objc4-646/runtime/
H A Dobjc-references.mm169 typedef hash_map<void *, ObjcAssociation> ObjectAssociationMap;
170 typedef hash_map<disguised_ptr_t, ObjectAssociationMap *> AssociationsHashMap;
173 class ObjectAssociationMap : public std::map<void *, ObjcAssociation, ObjectPointerLess, ObjectAssociationMapAllocator> {
178 typedef ObjcAllocator<std::pair<const disguised_ptr_t, ObjectAssociationMap*> > AssociationsHashMapAllocator;
179 class AssociationsHashMap : public unordered_map<disguised_ptr_t, ObjectAssociationMap *, DisguisedPointerHash, DisguisedPointerEqual, AssociationsHashMapAllocator> {
230 ObjectAssociationMap *refs = i->second;
231 ObjectAssociationMap::iterator j = refs->find(key);
281 ObjectAssociationMap *refs = i->second;
282 ObjectAssociationMap::iterator j = refs->find(key);
291 ObjectAssociationMap *ref
[all...]
/macosx-10.10/libauto-186/
H A DZoneDump.cpp203 ObjectAssociationMap *refs = i->second;
204 for (ObjectAssociationMap::iterator j = refs->begin(), jend = refs->end(); j != jend; j++) {
205 ObjectAssociationMap::value_type &pair = *j;
H A DBlockIterator.h264 ObjectAssociationMap *refs = i->second;
265 for (ObjectAssociationMap::iterator j = refs->begin(), jend = refs->end(); j != jend; j++) {
266 ObjectAssociationMap::value_type &pair = *j;
H A DReferenceIterator.h501 ObjectAssociationMap *refs = i->second;
502 for (ObjectAssociationMap::iterator j = refs->begin(), jend = refs->end(); j != jend; j++) {
503 ObjectAssociationMap::value_type &pair = *j;
586 ObjectAssociationMap *refs = i->second;
587 for (ObjectAssociationMap::iterator j = refs->begin(), jend = refs->end(); j != jend; j++) {
588 ObjectAssociationMap::value_type &pair = *j;
H A DZone.cpp827 ObjectAssociationMap* refs = (i != _associations.end() ? i->second : NULL);
829 refs = new ObjectAssociationMap();
839 ObjectAssociationMap *refs = i->second;
840 ObjectAssociationMap::iterator j = refs->find(key);
857 ObjectAssociationMap *refs = i->second;
858 ObjectAssociationMap::iterator j = refs->find(key);
896 ObjectAssociationMap *refs = i->second;
939 ObjectAssociationMap *refs = i->second;
940 ObjectAssociationMap::iterator j = refs->find(key);
H A DZoneCompaction.cpp756 ObjectAssociationMap *refs = i->second;
757 ObjectAssociationMap::iterator j = refs->find(&CompactionObserverKey);
918 ObjectAssociationMap* refs = i->second;
H A DZone.h62 class ObjectAssociationMap : public PtrPtrMap, public AuxAllocated {}; // <rdar://problem/7212101> Reduce space usage for each association. class in namespace:Auto
63 typedef __gnu_cxx::hash_map<void *, ObjectAssociationMap*, AuxPointerHash, AuxPointerEqual, AuxAllocator<void *> > AssociationsHashMap;
154 AssociationsHashMap _associations; // associative references object -> ObjectAssociationMap*.

Completed in 176 milliseconds