Home
last modified time | relevance | path

Searched refs:move_table (Results 1 – 1 of 1) sorted by relevance

/art/runtime/
Dclass_linker.cc4975 ScopedArenaUnorderedMap<ArtMethod*, ArtMethod*> move_table(allocator.Adapter()); in LinkInterfaceMethods() local
4981 move_table.emplace(&m, &*out); in LinkInterfaceMethods()
4995 move_table.emplace(mir_method, &*out); in LinkInterfaceMethods()
5026 auto it = move_table.find(m); in LinkInterfaceMethods()
5027 if (it != move_table.end()) { in LinkInterfaceMethods()
5040 auto it = move_table.find(m); in LinkInterfaceMethods()
5041 if (it != move_table.end()) { in LinkInterfaceMethods()
5050 auto it = move_table.find(out_imt[i]); in LinkInterfaceMethods()
5051 if (it != move_table.end()) { in LinkInterfaceMethods()
5060 CHECK(move_table.find(m) == move_table.end()) << PrettyMethod(m); in LinkInterfaceMethods()