Lines Matching refs:fixture

691     fixture_t fixture;  in TestSerialGrowByWithMoveIterators()  local
693 vector_t dst(fixture.dst_allocator); in TestSerialGrowByWithMoveIterators()
694 …dst.grow_by(std::make_move_iterator(fixture.source.begin()), std::make_move_iterator(fixture.sourc… in TestSerialGrowByWithMoveIterators()
696 fixture.verify_content_deep_moved(dst); in TestSerialGrowByWithMoveIterators()
1067 fixture_type fixture; in test_ex_move_assignment_memory_failure() local
1068 arena_allocator_fixture_type arena_allocator_fixture(4 * fixture.container_size); in test_ex_move_assignment_memory_failure()
1070 const std::size_t allocation_limit = fixture.container_size/4; in test_ex_move_assignment_memory_failure()
1078 victim = std::move(fixture.source); // fragmented assignment in test_ex_move_assignment_memory_failure()
1085 fixture.verify_part_of_content_deep_moved(victim, victim.size()); in test_ex_move_assignment_memory_failure()
1097 fixture_type fixture; in test_ex_move_assignment_element_ctor_exception() local
1098 const size_t planned_victim_size = fixture.container_size/4; in test_ex_move_assignment_element_ctor_exception()
1099 arena_allocator_fixture_type arena_allocator_fixture(4 * fixture.container_size); in test_ex_move_assignment_element_ctor_exception()
1107 victim = std::move(fixture.source); // fragmented assignment in test_ex_move_assignment_element_ctor_exception()
1114 fixture.verify_part_of_content_deep_moved(victim, planned_victim_size); in test_ex_move_assignment_element_ctor_exception()
1150 struct fixture { struct
1166 using fixture_t = push_back_exception_safety_helpers::fixture<move_support_tests::Foo>; in TestPushBackMoveExceptionSafety() argument
1181 using fixture_t = push_back_exception_safety_helpers::fixture<>; in TestEmplaceBackExceptionSafety()