Lines Matching refs:first
82 CHECK(my_c.insert( a, my_value.first )); in operator ()()
83 CHECK(utils::IsEqual()(a->first, my_value.first)); in operator ()()
88 CHECK(!my_c.insert( ca, my_value.first )); in operator ()()
89 CHECK(utils::IsEqual()(ca->first, my_value.first)); in operator ()()
131 CHECK(my_c.count( value.first ) == 1); in operator ()()
135 CHECK(my_c.find( ca, value.first )); in operator ()()
137 CHECK(utils::IsEqual()(ca->first, value.first)); in operator ()()
141 CHECK(my_c.count( value.first ) == 0); in operator ()()
144 CHECK(utils::IsEqual()(ca->first, value.first)); in operator ()()
149 CHECK(my_c.find( a, value.first )); in operator ()()
151 CHECK(utils::IsEqual()(a->first, value.first)); in operator ()()
155 CHECK(my_c.count( value.first ) == 0); in operator ()()
158 CHECK(utils::IsEqual()(a->first, value.first)); in operator ()()
162 CHECK(my_c.erase( value.first )); in operator ()()
163 CHECK(my_c.count( value.first ) == 0); in operator ()()
168 std::pair<iterator,iterator> r1 = my_c.equal_range( value.first ); in operator ()()
169 iterator r1_first_prev = r1.first++; in operator ()()
170 … CHECK((utils::IsEqual()( *r1_first_prev, value ) && utils::IsEqual()( r1.first, r1.second ))); in operator ()()
171 std::pair<const_iterator,const_iterator> r2 = const_c.equal_range( value.first ); in operator ()()
172 const_iterator r2_first_prev = r2.first++; in operator ()()
173 … CHECK((utils::IsEqual()( *r2_first_prev, value ) && utils::IsEqual()( r2.first, r2.second ))); in operator ()()
336 arrRefInt.push_back( ref_int_t( it->first, it->second ) ); in TestSpecificTypes()
342 arrIntRef.push_back( int_ref_t( it->first, it->second ) ); in TestSpecificTypes()
462 REQUIRE_MESSAGE(val.first == i, "Incorrect key in internal_fast_find return value"); in TestInternalFastFind()
521 if (c.count( (*it).first) == 0){ in equal()
624 CHECK(acc->first == i); in test_with_minimalistic_mutex()
634 CHECK(acc->first == i); in test_with_minimalistic_mutex()
644 CHECK(acc->first == i); in test_with_minimalistic_mutex()
667 REQUIRE_MESSAGE(acc->first == i, "Incorrect key"); in test_with_minimalistic_mutex()