Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_concurrent_queue.cpp1815 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()
1826 tbb::concurrent_queue<std::vector<int>> cpy(src.get_allocator()); in test_move_assignment_test_equal() local
1828 cpy = 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()
1859 …tbb::concurrent_queue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>> cpy(src_… in test_move_assignment_test_unequal() local
1861 cpy = 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()