Lines Matching refs:acc
1289 accessor acc; in test_heterogeneous_find() local
1302 regular_result = chmap.find(acc, key); in test_heterogeneous_find()
1303 heterogeneous_result = chmap.find(acc, int(1)); in test_heterogeneous_find()
1323 regular_result = chmap.find(acc, key); in test_heterogeneous_find()
1324 heterogeneous_result = chmap.find(acc, int(1)); in test_heterogeneous_find()
1328 REQUIRE_MESSAGE(acc->first.integer_key() == 1, "Incorrect accessor returned"); in test_heterogeneous_find()
1419 accessor acc; in test_heterogeneous_insert() local
1437 result = chmap.insert(acc, int(2)); in test_heterogeneous_insert()
1441 REQUIRE_MESSAGE(acc->first.integer_key() == 2, "Incorrect accessor"); in test_heterogeneous_insert()
1442 …REQUIRE_MESSAGE(acc->second.value() == DefaultConstructibleValue::default_value, "Value should be … in test_heterogeneous_insert()
1444 result = chmap.insert(acc, int(2)); in test_heterogeneous_insert()
1448 REQUIRE_MESSAGE(acc->first.integer_key() == 2, "Incorrect accessor"); in test_heterogeneous_insert()
1449 …REQUIRE_MESSAGE(acc->second.value() == DefaultConstructibleValue::default_value, "Value should be … in test_heterogeneous_insert()