Lines Matching refs:dst
1815 void test_check_move_allocator(Container& src, Container& dst, Container& cpy) { in test_check_move_allocator() argument
1817 …REQUIRE_MESSAGE(std::equal(dst.unsafe_begin(), dst.unsafe_end(), cpy.unsafe_begin()), "Elements ar… in test_check_move_allocator()
1825 tbb::concurrent_queue<std::vector<int>> dst(src.get_allocator()); in test_move_assignment_test_equal() local
1827 …REQUIRE_MESSAGE(src.get_allocator() == dst.get_allocator(), "Incorrect test setup: allocators shou… in test_move_assignment_test_equal()
1829 dst = std::move(src); in test_move_assignment_test_equal()
1838 test_check_move_allocator<tbb::concurrent_queue<std::vector<int>>>(src, dst, cpy); in test_move_assignment_test_equal()
1839 REQUIRE_MESSAGE(cpy.unsafe_size() == dst.unsafe_size(), "Queues are not equal"); in test_move_assignment_test_equal()
1858 …tbb::concurrent_queue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>> dst(dst_… in test_move_assignment_test_unequal() local
1860 …REQUIRE_MESSAGE(src.get_allocator() != dst.get_allocator(), "Incorrect test setup: allocators shou… in test_move_assignment_test_unequal()
1862 dst = std::move(src); in test_move_assignment_test_unequal()
1873 …ncurrent_queue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>>>(src, dst, cpy); in test_move_assignment_test_unequal()
1874 REQUIRE_MESSAGE(dst.unsafe_size() == cpy.unsafe_size(), "Queues are not equal"); in test_move_assignment_test_unequal()