Lines Matching refs:map_
1630 : map_(map), ref_(ref) {} in ReplaceObjectReferences()
1640 auto it = map_.find(root->AsMirrorPtr()); in ReplaceObjectReferences()
1641 if (it != map_.end()) { in ReplaceObjectReferences()
1651 auto it = map_.find(obj->GetFieldObject<art::mirror::Object>(off)); in ReplaceObjectReferences()
1652 if (it != map_.end()) { in ReplaceObjectReferences()
1678 const ObjectMap& map_; in ReplaceObjectReferences()
1702 explicit ResizeRootVisitor(const ObjectMap& map) : map_(map) {} in ReplaceStrongRoots()
1711 auto it = map_.find(*obj); in ReplaceStrongRoots()
1712 if (it != map_.end()) { in ReplaceStrongRoots()
1738 auto it = map_.find(obj->AsMirrorPtr()); in ReplaceStrongRoots()
1739 if (it != map_.end()) { in ReplaceStrongRoots()
1764 const ObjectMap& map_; in ReplaceStrongRoots() member
1840 ReplaceWeaksVisitor(const ObjectMap& map) : map_(map) {} in ReplaceWeakRoots()
1844 auto it = map_.find(obj); in ReplaceWeakRoots()
1845 if (it != map_.end()) { in ReplaceWeakRoots()
1853 const ObjectMap& map_; in ReplaceWeakRoots() member