Lines Matching refs:it2
159 typename MultiMap::iterator it2 = cont2.begin();
162 REQUIRE_MESSAGE((*(it1++) == *(it2++)), "Multimap repetitive key was not erased properly");
251 typename Container::iterator it2 = cont.insert(ins.first, Value<Container>::make(k2));
252 REQUIRE_MESSAGE(Value<Container>::get(*it2) == k2, "Element 2 has not been inserted");
253 check_value_state<StateTrackableBase::MoveInitialized>(*it2, CheckElementState{});
316 typename Container::iterator it2 = emplace_helpers::call_emplace_hint(cont, ins.first, key2);
317 REQUIRE_MESSAGE(Value<Container>::compare(it2, key2), "Element 2 has not been inserted");
318 check_value_state<StateTrackableBase::DirectInitialized>(*it2, CheckElementState{});
547 typename T::iterator it2 = cont.insert(ins.first, Value<T>::make(2));
548 REQUIRE_MESSAGE((Value<T>::get(*it2) == 2), "Element 2 has not been inserted properly");
1124 auto it2 = std::search(my_lst.begin(), my_lst.end(), prev_it, it, utils::IsEqual());
1125 REQUIRE(it2 != my_lst.end());
1126 auto dist = std::distance(my_lst.begin(), it2);