Lines Matching refs:it
110 for ( Iterator it = i; it != j; ) { in do_test_range() local
111 Iterator it_prev = it++; in do_test_range()
112 …>::const_iterator it2 = std::search( my_lst.begin(), my_lst.end(), it_prev, it, utils::IsEqual() ); in do_test_range()
268 typename std::list<Value>::const_iterator it = lst.begin(); in TypeTester() local
269 std::initializer_list<Value> il = { *it++, *it++, *it++ }; in TypeTester()
271 c2.insert( it, lst.end() ); in TypeTester()
276 c3.insert( it, lst.end() ); in TypeTester()
281 c4.insert( it, lst.end()); in TypeTester()
335 for ( std::list<int_int_t>::iterator it = arrIntInt.begin(); it != arrIntInt.end(); ++it ) in TestSpecificTypes() local
336 arrRefInt.push_back( ref_int_t( it->first, it->second ) ); in TestSpecificTypes()
341 for ( std::list<int_int_t>::iterator it = arrIntInt.begin(); it != arrIntInt.end(); ++it ) in TestSpecificTypes() local
342 arrIntRef.push_back( int_ref_t( it->first, it->second ) ); in TestSpecificTypes()
520 for (iterator it = begin; it != end; ++it ){ in equal() local
521 if (c.count( (*it).first) == 0){ in equal()