Home | History | Annotate | Download | only in directory_iterator.members

Lines Matching refs:it

54     directory_iterator it(testDir, ec);
59 TEST_REQUIRE(it != endIt);
60 const path entry = *it;
62 directory_iterator& it_ref = ++it;
63 TEST_CHECK(&it_ref == &it);
66 TEST_CHECK(it == endIt);
77 directory_iterator it(testDir, ec);
82 TEST_REQUIRE(it != endIt);
83 const path entry = *it;
85 const path entry2 = *it++;
89 TEST_CHECK(it == endIt);
101 directory_iterator it(testDir, ec);
106 TEST_REQUIRE(it != endIt);
107 const path entry = *it;
109 directory_iterator& it_ref = it.increment(ec);
111 TEST_CHECK(&it_ref == &it);
114 TEST_CHECK(it == endIt);