Lines Matching refs:move
187 Foo( Foo&& foo ) : state_trackable_type(std::move(foo)) { in Foo()
212 state_trackable_type::operator=(std::move(x));
262 return static_cast<FooWithAssign&>(Foo::operator=(std::move(f)));
404 dst_allocator_copy = std::move(source_allocator_copy); in TwoMemoryArenasFixture()
657 container_type dst(std::move(fixture.source)); in test_move_ctor_single_argument()
672 container_type dst(std::move(fixture.source), fixture.source.get_allocator()); in test_move_ctor_with_equal_allocator()
687 container_type dst(std::move(fixture.source), alloc); in test_move_ctor_with_unequal_allocator()
700 dst = std::move(fixture.source); in test_move_assignment_POCMA_true_stateful_allocator()
721 dst = std::move(fixture.source); in test_move_assignment_POCMA_true_stateless_allocator()
737 dst = std::move(fixture.source); in test_move_assignment_POCMA_false_equal_allocator()
752 dst = std::move(fixture.source); in test_move_assignment_POCMA_false_unequal_allocator()
778 …REQUIRE_THROW_EXCEPTION(container_type dst(std::move(fixture.source), fixture.dst_allocator), std:… in test_ex_move_ctor_unequal_allocator_memory_failure()
790 …REQUIRE_THROW_EXCEPTION(container_type dst(std::move(fixture.source), fixture.dst_allocator), FooE… in test_ex_move_ctor_unequal_allocator_element_ctor_failure()