Lines Matching refs:find

239         bool b = x.find(a,key);  in CheckTable()
682 bool b = table.find( a, MyKey::make(i) ); in apply()
704 bool b = table.find( a, MyKey::make(i) ); in apply()
783 b = table.find( a, MyKey::make(i) ) && table.erase( a ); in apply()
786 b = table.find( a, MyKey::make(i) ) && table.erase( a ); in apply()
809 if(table.find( res, MyKey::make(key) ) && table.erase( res ) ) in apply()
813 if(table.find( res, MyKey::make(key) ) && table.erase( res ) ) in apply()
839 CHECK(table.find(real_ca,MyKey::make(1))); in operator ()()
847 CHECK(const_table.find(fake_ca,MyKey::make(1))); in operator ()()
1012 b = my_table.find( a, MyKey::make(i) ) && my_table.erase( a ); in operator ()()
1015 b = my_table.find( a, MyKey::make(i) ) && my_table.erase( a ); in operator ()()
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()
1302 regular_result = chmap.find(acc, key); in test_heterogeneous_find()
1303 heterogeneous_result = chmap.find(acc, int(1)); 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()
1323 regular_result = chmap.find(acc, key); in test_heterogeneous_find()
1324 heterogeneous_result = chmap.find(acc, int(1)); in test_heterogeneous_find()
1467 REQUIRE(chmap.find(cacc, int(1))); in test_heterogeneous_erase()
1468 REQUIRE(chmap.find(cacc, int(2))); in test_heterogeneous_erase()
1475 REQUIRE_MESSAGE(!chmap.find(cacc, int(1)), "Element was not erased"); in test_heterogeneous_erase()