Searched refs:FindWithHash (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | class_table.cc | 45 auto existing_it = classes_.back().FindWithHash(slot, hash); in UpdateClass() 48 if (class_set.FindWithHash(slot, hash) != class_set.end()) { in UpdateClass() 116 auto it = class_set.FindWithHash(pair, hash); in Lookup()
|
D | intern_table.cc | 84 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(old_ref), hash); in VisitRoots() 326 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(s), hash); in Remove() 342 DCHECK(table.set_.FindWithHash(GcRoot<mirror::String>(s), hash) == table.set_.end()); in Find() 347 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(s), hash); in Find() 361 auto it = table.set_.FindWithHash(string, hash); in Find()
|
D | runtime_image.cc | 1364 auto it2 = intern_table_.FindWithHash(str.Ptr(), hash); in CopyDexCache() 1500 auto string_it = intern_table_.FindWithHash(str.Ptr(), hash); in TryInitializeClass()
|
D | class_linker.cc | 1547 auto it = image_interns_.FindWithHash(GcRoot<mirror::String>(referred_str), hash); in TestObject() 8514 auto it = declared_virtual_signatures.FindWithHash(super_method, hash); in AssignVTableIndexes() 8588 auto it1 = declared_virtual_signatures.FindWithHash(interface_method, hash); in AssignVTableIndexes() 8613 auto it2 = super_vtable_signatures.FindWithHash(interface_method, hash); in AssignVTableIndexes() 8732 auto it1 = declared_virtual_signatures.FindWithHash(interface_method, hash); in FindCopiedMethodsForInterface() 8744 auto it = copied_method_records_.FindWithHash(new_record, hash); in FindCopiedMethodsForInterface()
|
/art/libartbase/base/ |
D | hash_set.h | 484 return FindWithHash(key, hashfn_(key)); in find() 489 return FindWithHash(key, hashfn_(key)); in find() 493 iterator FindWithHash(const K& key, size_t hash) { in FindWithHash() function 498 const_iterator FindWithHash(const K& key, size_t hash) const { in FindWithHash() function
|
/art/runtime/gc/space/ |
D | image_space_test.cc | 161 return temp_set.FindWithHash(utf8_test_string, hash) != temp_set.end(); in TEST_F()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 540 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(str), hash); in IsStronglyInternedString() 1148 auto it = last_class_set.FindWithHash(ClassTable::TableSlot(klass, hash), hash); in Prune() 1156 return class_set.FindWithHash(slot, hash) != class_set.end(); in Prune() 2095 intern_set.FindWithHash(InternTable::Utf8String(utf16_length, utf8_data), hash); in ProcessInterns()
|