Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandabase/tests/
Dlist_test.cpp176 auto it2 = list2.begin(); in IsEqual() local
177 for (; it1 != list1.end(); it1++, it2++) { in IsEqual()
179 if (node->value != (*it2).value) { in IsEqual()
184 it2 = list2.begin(); in IsEqual()
185 for (; it2 != list2.end(); ++it1, ++it2) { in IsEqual()
187 if (node->value != (*it2).value) { in IsEqual()
227 auto it2 = list2.begin(); in TEST_F() local
231 it2 = list2.erase(it2); in TEST_F()
234 it2++; in TEST_F()
/arkcompiler/runtime_core/compiler/tests/
Dunit_test.h159 auto it2 = list.begin(); in CheckInputs() local
160 for (auto it = inst.GetInputs().begin(); it != inst.GetInputs().end(); ++it, ++it2) { in CheckInputs()
161 if (it->GetInst() != &INS(*it2)) { in CheckInputs()
Dgraph_comparator.h34 for (auto it1 = graph1->GetBlocksRPO().begin(), it2 = graph2->GetBlocksRPO().begin(); in Compare() local
35 it1 != graph1->GetBlocksRPO().end(); it1++, it2++) { in Compare()
36 auto it = bb_map_.insert({*it1, *it2}); in Compare()
/arkcompiler/runtime_core/libpandabase/utils/
Dsmall_vector.h329 auto it2 = other.begin();
330 for (; it1 != end(); ++it1, ++it2) {
331 if (*it1 != *it2) {