Home
last modified time | relevance | path

Searched refs:table_to_insert (Results 1 – 1 of 1) sorted by relevance

/oneTBB/test/common/
H A Dnode_handling_support.h203 void test_insert_overloads(Container& table_to_insert, const typename Container::value_type& value,… in test_insert_overloads() argument
207 auto table_size = table_to_insert.size(); in test_insert_overloads()
208 auto result = table_to_insert.insert(hint..., std::move(nh)); in test_insert_overloads()
209 check_insert(table_to_insert, result, /*successful = */false); in test_insert_overloads()
211 REQUIRE_MESSAGE(table_to_insert.size() == table_size, in test_insert_overloads()
217 result = table_to_insert.insert(hint..., std::move(nh)); in test_insert_overloads()
219 check_insert(table_to_insert, result, /*successful = */true, &value); in test_insert_overloads()
223 result = table_to_insert.insert(hint..., std::move(nh)); in test_insert_overloads()
225 check_insert(table_to_insert, result, /*successful = */false, &value); in test_insert_overloads()