Lines Matching refs:cacc
1288 const_accessor cacc; in test_heterogeneous_find() local
1294 bool regular_result = chmap.find(cacc, key); in test_heterogeneous_find()
1295 bool heterogeneous_result = chmap.find(cacc, int(1)); in test_heterogeneous_find()
1310 bool tmp_result = chmap.emplace(cacc, std::piecewise_construct, in test_heterogeneous_find()
1314 regular_result = chmap.find(cacc, key); in test_heterogeneous_find()
1315 heterogeneous_result = chmap.find(cacc, int(1)); in test_heterogeneous_find()
1319 REQUIRE_MESSAGE(cacc->first.integer_key() == 1, "Incorrect accessor returned"); in test_heterogeneous_find()
1321 cacc.release(); in test_heterogeneous_find()
1418 const_accessor cacc; in test_heterogeneous_insert() local
1423 bool result = chmap.insert(cacc, int(1)); in test_heterogeneous_insert()
1427 REQUIRE_MESSAGE(cacc->first.integer_key() == 1, "Incorrect accessor"); in test_heterogeneous_insert()
1428 …REQUIRE_MESSAGE(cacc->second.value() == DefaultConstructibleValue::default_value, "Value should be… in test_heterogeneous_insert()
1430 result = chmap.insert(cacc, int(1)); in test_heterogeneous_insert()
1434 REQUIRE_MESSAGE(cacc->first.integer_key() == 1, "Incorrect accessor"); in test_heterogeneous_insert()
1435 …REQUIRE_MESSAGE(cacc->second.value() == DefaultConstructibleValue::default_value, "Value should be… in test_heterogeneous_insert()
1465 typename chmap_type::const_accessor cacc; in test_heterogeneous_erase() local
1467 REQUIRE(chmap.find(cacc, int(1))); in test_heterogeneous_erase()
1468 REQUIRE(chmap.find(cacc, int(2))); in test_heterogeneous_erase()
1470 cacc.release(); in test_heterogeneous_erase()
1475 REQUIRE_MESSAGE(!chmap.find(cacc, int(1)), "Element was not erased"); in test_heterogeneous_erase()