reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/FileSystem.h
 1288     State = std::make_shared<detail::DirIterState>();
 1291         *State, path.toStringRef(path_storage), FollowSymlinks);
 1297     State = std::make_shared<detail::DirIterState>();
 1299         *State, de.path(), FollowSymlinks);
 1307     ec = directory_iterator_increment(*State);
 1311   const directory_entry &operator*() const { return State->CurrentEntry; }
 1312   const directory_entry *operator->() const { return &State->CurrentEntry; }
 1315     if (State == RHS.State)
 1315     if (State == RHS.State)
 1317     if (!RHS.State)
 1318       return State->CurrentEntry == directory_entry();
 1319     if (!State)
 1320       return RHS.State->CurrentEntry == directory_entry();
 1321     return State->CurrentEntry == RHS.State->CurrentEntry;
 1321     return State->CurrentEntry == RHS.State->CurrentEntry;