Lines Matching refs:it
133 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end(); in ContainsLocked() local
134 it != end && it->first == identity_hash_code; ++it) { in ContainsLocked()
135 ObjectRegistryEntry* entry = it->second; in ContainsLocked()
182 auto it = id_to_entry_.find(id); in InternalGet() local
183 if (it == id_to_entry_.end()) { in InternalGet()
187 ObjectRegistryEntry& entry = *it->second; in InternalGet()
198 auto it = id_to_entry_.find(id); in GetJObject() local
199 CHECK(it != id_to_entry_.end()) << id; in GetJObject()
200 ObjectRegistryEntry& entry = *it->second; in GetJObject()
207 auto it = id_to_entry_.find(id); in DisableCollection() local
208 CHECK(it != id_to_entry_.end()); in DisableCollection()
209 Promote(*it->second); in DisableCollection()
215 auto it = id_to_entry_.find(id); in EnableCollection() local
216 CHECK(it != id_to_entry_.end()); in EnableCollection()
217 Demote(*it->second); in EnableCollection()
245 auto it = id_to_entry_.find(id); in IsCollected() local
246 CHECK(it != id_to_entry_.end()); in IsCollected()
247 ObjectRegistryEntry& entry = *it->second; in IsCollected()
259 auto it = id_to_entry_.find(id); in DisposeObject() local
260 if (it == id_to_entry_.end()) { in DisposeObject()
263 ObjectRegistryEntry* entry = it->second; in DisposeObject()