Lines Matching refs:c2
1166 Table c2;
1169 c2.insert(lst.begin(), begin5);
1170 std::for_each(lst.begin(), begin5, CheckValue<DefCtorPresent, Table>(c2));
1172 c2.swap(c);
1173 REQUIRE(c2.size() == lst.size());
1176 std::for_each(lst.begin(), lst.end(), CheckValue<DefCtorPresent, Table>(c2));
1178 c2.clear();
1179 REQUIRE(c2.size() == 0);
1205 container_type c2(allocator);
1210 emplace_helpers::call_emplace(c2, std::move(key2));
1213 c2.clear();
1216 c2.insert(std::move(value2));
1219 c2.clear();
1222 c2.insert(value1);
1224 c1 = c2;
1225 c2 = std::move(c1);
1536 Container c2{Value<Container>::make(1), Value<Container>::make(2)};
1539 Container c2_copy = c2;
1541 c1.swap(c2);
1544 REQUIRE_MESSAGE(c2 == c1_copy, "Incorrect swap with not always equal allocator");