Lines Matching refs:src_bnd

1831     tbb::concurrent_bounded_queue<std::vector<int>> src_bnd({vect1, vect2, vect3});  in test_move_assignment_test_equal()  local
1832 tbb::concurrent_bounded_queue<std::vector<int>> dst_bnd(src_bnd.get_allocator()); in test_move_assignment_test_equal()
1833 tbb::concurrent_bounded_queue<std::vector<int>> cpy_bnd(src_bnd.get_allocator()); in test_move_assignment_test_equal()
1834 …REQUIRE_MESSAGE(src_bnd.get_allocator() == dst_bnd.get_allocator(), "Incorrect test setup: allocat… in test_move_assignment_test_equal()
1835 cpy_bnd = src_bnd; in test_move_assignment_test_equal()
1836 dst_bnd = std::move(src_bnd); in test_move_assignment_test_equal()
1841 …test_check_move_allocator<tbb::concurrent_bounded_queue<std::vector<int>>>(src_bnd, dst_bnd, cpy_b… in test_move_assignment_test_equal()
1864 …unded_queue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>> src_bnd(src_alloc); in test_move_assignment_test_unequal() local
1867 …REQUIRE_MESSAGE(src_bnd.get_allocator() != dst_bnd.get_allocator(), "Incorrect test setup: allocat… in test_move_assignment_test_unequal()
1868 src_bnd.push(v); in test_move_assignment_test_unequal()
1869 src_bnd.push(v); in test_move_assignment_test_unequal()
1870 cpy_bnd = src_bnd; in test_move_assignment_test_unequal()
1871 dst_bnd = std::move(src_bnd); in test_move_assignment_test_unequal()
1876 …eue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>>>(src_bnd, dst_bnd, cpy_bnd… in test_move_assignment_test_unequal()