Lines Matching refs:first
61 static strip_key key( const Value& value ) { return value.first; } in key()
124 for(typename MultiMap::iterator it = range.first; it != range.second; ++it) {
151 erased_it = cont1.insert(std::make_pair(1, i)).first;
183 …REQUIRE_MESSAGE( (*(cont.equal_range( 1 )).first).second == one_values[0], "Improper value from eq…
248 REQUIRE_MESSAGE(Value<Container>::get(*ins.first) == k1, "Element 1 has not been inserted");
249 check_value_state<StateTrackableBase::MoveInitialized>(*ins.first, CheckElementState{});
251 typename Container::iterator it2 = cont.insert(ins.first, Value<Container>::make(k2));
307 REQUIRE_MESSAGE(Value<Container>::compare(ins.first, key1), "Element 1 has not been inserted");
308 check_value_state<StateTrackableBase::DirectInitialized>(*ins.first, CheckElementState{});
316 typename Container::iterator it2 = emplace_helpers::call_emplace_hint(cont, ins.first, key2);
326 ++sum.first;
335 sum1.first += sum2.first; sum1.second += sum2.second;
480 …REQUIRE_MESSAGE((ins.second == true && Value<T>::get(*(ins.first)) == 1), "Element 1 has not been …
496 …REQUIRE_MESSAGE((ins2.second == true && Value<T>::get(*(ins2.first)) == 1), "Element 1 has not bee…
506 it = range.first;
520 …REQUIRE_MESSAGE((ins2.second == false && ins2.first == ins.first), "Element 1 should not be re-ins…
531 typename T::iterator it = range.first;
547 typename T::iterator it2 = cont.insert(ins.first, Value<T>::make(2));
584 newcont.unsafe_erase(range2.first, range2.second);
599 it = range.first;
609 range = newcont.equal_range(2); it = range.first;
622 it = range.first;
626 it = range.first;
641 …REQUIRE_MESSAGE((ins3.second == true && Value<T>::get(*(ins3.first)) == i), "Element 1 has not bee…
646 REQUIRE((256 == CheckRecursiveRange<T,typename T::iterator>(cont.range()).first));
647 REQUIRE((256 == CheckRecursiveRange<T,typename T::const_iterator>(ccont.range()).first));
689 REQUIRE_MESSAGE((Value<Container>::get(*(pib.first)) == val),
701 REQUIRE_MESSAGE((Value<Container>::get(*(pib.first)) == val),
725 …REQUIRE_MESSAGE(Value<Container>::get(*(pib.first)) == (my_asymptotic ? 1 : i), "Element not prope…
807 REQUIRE(items_inserted == p.first);
817 REQUIRE(items_inserted == p.first);
928 arr_ref_int_pairs.emplace_back(item.first, item.second);
935 arr_int_ref_pairs.emplace_back(item.first, item.second);
1016 REQUIRE(equal(my_c[my_value.first], my_value.second));
1017 typename Table::key_type temp_key = my_value.first;
1031 REQUIRE(equal(c.at(value.first), value.second));
1034 REQUIRE(equal(constC.at(value.first), value.second));
1067 REQUIRE(equal(*res.first, value));
1070 iterator it = res.first;
1072 REQUIRE(my_c.unsafe_erase(res.first) == it);
1077 REQUIRE((equal(*r1.first, value) && ++r1.first == r1.second));
1079 REQUIRE((equal(*r2.first, value) && ++r2.first == r2.second));
1505 …REQUIRE_MESSAGE(*res_generic_insert.first == *res_value_insert.first, "Insert by generic pair retu…