Lines Matching refs:begin

334         for (auto it = source.begin(); it != source.end(); ++it) {  in MemoryLocations()
335 locations[std::distance(source.begin(), it)] = &*it; in MemoryLocations()
345 return std::equal(dst.begin(), dst.end(), locations.begin(), is_same_location); in content_location_unchanged()
353 return std::equal(dst.begin(), dst.end(), locations.begin(), is_not_same_location); in content_location_changed()
391 … REQUIRE_MESSAGE(&(*source_arena_fixture.storage.begin()) != &(*dst_arena_fixture.storage.begin()), in TwoMemoryArenasFixture()
484 …REQUIRE(std::equal(dst.begin(), dst.begin() + number_of_constructed_items, init_iterator_type(0))); in verify_content_equal_to_source()
497 … REQUIRE_MESSAGE(std::all_of(dst.begin(), dst.end(), is_state_predicate<Foo::MoveInitialized>()), in verify_content_deep_moved()
499 … REQUIRE_MESSAGE(std::all_of(source.begin(), source.end(), is_state_predicate<Foo::MovedFrom>()), in verify_content_deep_moved()
506 …REQUIRE_MESSAGE(std::all_of(dst.begin(), dst.begin() + number_of_constructed_items, is_state_predi… in verify_part_of_content_deep_moved()
508 …REQUIRE_MESSAGE(std::all_of(dst.begin() + number_of_constructed_items, dst.end(), is_state_predica… in verify_part_of_content_deep_moved()
512 …REQUIRE_MESSAGE(std::all_of(source.begin(), source.begin() + number_of_constructed_items, is_state… in verify_part_of_content_deep_moved()
513 …REQUIRE_MESSAGE(std::all_of(source.begin() + number_of_constructed_items, source.end(), is_not_sta… in verify_part_of_content_deep_moved()
823 …container_type dst(std::make_move_iterator(fixture.source.begin()), std::make_move_iterator(fixtur… in test_constructor_with_move_iterators()
836 …dst.assign(std::make_move_iterator(fixture.source.begin()), std::make_move_iterator(fixture.source… in test_assign_with_move_iterators()