Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_line_writer.h199 auto it2 = files_map.find(full_path); in WriteCompilationUnit() local
200 if (it2 == files_map.end()) { in WriteCompilationUnit()
210 file_index = it2->second; in WriteCompilationUnit()
/art/runtime/
Dfault_handler.cc258 auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler); in RemoveHandler() local
259 if (it2 != other_handlers_.end()) { in RemoveHandler()
260 other_handlers_.erase(it2); in RemoveHandler()
Dclass_linker.cc1707 auto it2 = new_class_set->find(ClassTable::TableSlot(super_class)); in Update() local
1708 DCHECK(it2 != new_class_set->end()); in Update()
1709 DCHECK_EQ(it2->Read(), super_class); in Update()
/art/libartbase/base/
Dhash_set_test.cc251 auto it2 = std_set.find(s); in TEST_F() local
252 ASSERT_EQ(it1 == hash_set.end(), it2 == std_set.end()); in TEST_F()
254 ASSERT_EQ(*it1, *it2); in TEST_F()
256 std_set.erase(it2); in TEST_F()
/art/dexlayout/
Ddexlayout_test.cc695 SafeDexInstructionIterator it2(instructions.begin(), instructions.end()); in TEST_F() local
696 while (!it2.IsErrorState()) { in TEST_F()
697 ++it2; in TEST_F()
699 EXPECT_TRUE(it2 == last_instruction); in TEST_F()
700 EXPECT_TRUE(it2 < instructions.end()); in TEST_F()
/art/compiler/optimizing/
Dbounds_check_elimination.cc1937 for (auto it2 = uses.begin(), end2 = uses.end(); it2 != end2; /* ++it2 below */) { in InsertPhiNodes() local
1938 HInstruction* user = it2->GetUser(); in InsertPhiNodes()
1939 size_t index = it2->GetIndex(); in InsertPhiNodes()
1941 ++it2; in InsertPhiNodes()
1952 for (auto it2 = env_uses.begin(), end2 = env_uses.end(); it2 != end2; /* ++it2 below */) { in InsertPhiNodes() local
1953 HEnvironment* user = it2->GetUser(); in InsertPhiNodes()
1954 size_t index = it2->GetIndex(); in InsertPhiNodes()
1956 ++it2; in InsertPhiNodes()
/art/dex2oat/
Ddex2oat_test.cc2337 SafeDexInstructionIterator it2(instructions.begin(), instructions.end()); in TEST_F() local
2338 while (!it2.IsErrorState()) { in TEST_F()
2339 ++it2; in TEST_F()
2341 EXPECT_TRUE(it2 == last_instruction); in TEST_F()
2342 EXPECT_TRUE(it2 < instructions.end()); in TEST_F()
/art/dex2oat/linker/
Dimage_writer.cc1618 auto it2 = native_object_relocations_.find(field); in RecordNativeRelocations() local
1619 CHECK(it2 == native_object_relocations_.end()) << "Field at index=" << i in RecordNativeRelocations()