Lines Matching refs:table
149 Container table; in generate_node_handle() local
150 table.insert(value); in generate_node_handle()
151 return table.unsafe_extract(table.begin()); in generate_node_handle()
155 void check_insert( const Container& table,
160 REQUIRE_MESSAGE(result == table.end(),
167 for (auto it = table.begin(); it != table.end(); ++it) {
172 REQUIRE_MESSAGE((result == table.find(Value<Container>::key(*node_value)) &&
173 result != table.end()),
181 void check_insert( const Container& table,
186 check_insert(table, result, node_value);
191 void check_insert( const Container& table,
196 check_insert(table, result.first, node_value);
237 void test_insert( Container table, const typename Container::value_type& value ) { in test_insert() argument
238 REQUIRE_MESSAGE(!table.empty(), "Insert: container should contains 1 or more elements"); in test_insert()
239 Container table_backup(table); in test_insert()
240 test_insert_overloads(table, value); // test insert in test_insert()
377 for (auto table : src_tables) { in check_concurrent_merge() local
380 if (!table.contains(Value<SrcTableType>::key(it))) { in check_concurrent_merge()