Home | History | Annotate | Download | only in rec.dir.itr.members

Lines Matching defs:to

96     recursive_directory_iterator to;
97 to = std::move(from);
98 TEST_REQUIRE(to != endIt);
99 TEST_CHECK(*to == entry);
100 TEST_CHECK(to.options() == from_copy.options());
101 TEST_CHECK(to.depth() == from_copy.depth());
102 TEST_CHECK(to.recursion_pending() == from_copy.recursion_pending());
103 TEST_CHECK(from == endIt || from == to);
110 recursive_directory_iterator to = createInterestingIterator();
112 to = std::move(from);
113 TEST_REQUIRE(to == from);
114 TEST_CHECK(to == recursive_directory_iterator{});