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

Lines Matching defs:to

87     recursive_directory_iterator to;
88 to = from;
89 TEST_REQUIRE(to == from);
90 TEST_CHECK(*to == entry);
91 TEST_CHECK(to.options() == from.options());
92 TEST_CHECK(to.depth() == from.depth());
93 TEST_CHECK(to.recursion_pending() == from.recursion_pending());
100 recursive_directory_iterator to = createInterestingIterator();
102 to = from;
103 TEST_REQUIRE(to == from);
104 TEST_CHECK(to == recursive_directory_iterator{});