Lines Matching refs:dst

181     container_type dst{std::move(fixture.cpq_src)};  in test_steal_move_ctor()  local
183 REQUIRE_MESSAGE(dst == src_copy, "cpq content changed during steal move"); in test_steal_move_ctor()
184 REQUIRE_MESSAGE(!(dst != src_copy), "cpq content changed during steal move"); in test_steal_move_ctor()
196 fixture_type::cpq_type dst(std::move(fixture.cpq_src), arena_fixture.source_allocator); in test_steal_move_ctor_with_allocator() local
198 REQUIRE_MESSAGE(dst == src_copy, "cpq content changed during steal move"); in test_steal_move_ctor_with_allocator()
199 REQUIRE_MESSAGE(!(dst != src_copy), "cpq content changed during steal move"); in test_steal_move_ctor_with_allocator()
213 fixture_type::cpq_type dst(std::move(fixture.cpq_src), arena_fixture.dst_allocator); in test_per_element_move_ctor_with_allocator() local
216 REQUIRE_MESSAGE(dst == src_copy, "cpq content changed during move"); in test_per_element_move_ctor_with_allocator()
217 REQUIRE_MESSAGE(!(dst != src_copy), "cpq content changed during move"); in test_per_element_move_ctor_with_allocator()
226 fixture_type::cpq_type dst; in test_steal_move_assign_operator() local
228 dst = std::move(fixture.cpq_src); in test_steal_move_assign_operator()
231 REQUIRE_MESSAGE(dst == src_copy, "cpq content changed during steal move assignment"); in test_steal_move_assign_operator()
232 REQUIRE_MESSAGE(!(dst != src_copy), "cpq content changed during steal move assignment"); in test_steal_move_assign_operator()
243 fixture_type::cpq_type dst(arena_fixture.dst_allocator); in test_steal_move_assign_operator_with_stateful_allocator() local
246 dst = std::move(fixture.cpq_src); in test_steal_move_assign_operator_with_stateful_allocator()
248 REQUIRE_MESSAGE(dst == src_copy, "cpq content changed during steal move assignment"); in test_steal_move_assign_operator_with_stateful_allocator()
249 REQUIRE_MESSAGE(!(dst != src_copy), "cpq content changed during steal move assignment"); in test_steal_move_assign_operator_with_stateful_allocator()
260 fixture_type::cpq_type dst(arena_fixture.dst_allocator); in test_per_element_move_assign_operator() local
264 dst = std::move(fixture.cpq_src); in test_per_element_move_assign_operator()
267 REQUIRE_MESSAGE(dst == src_copy, "cpq content changed during per element move assignment"); in test_per_element_move_assign_operator()
268 REQUIRE_MESSAGE(!(dst != src_copy), "cpq content changed during per element move assignment"); in test_per_element_move_assign_operator()