Lines Matching refs:directory_entry
169 class directory_entry {
171 directory_entry() noexcept = default;
172 directory_entry(const directory_entry&) = default;
173 directory_entry(directory_entry&&) noexcept = default;
174 explicit directory_entry(const filesystem::path& p);
175 directory_entry(const filesystem::path& p, error_code& ec);
176 ~directory_entry();
178 directory_entry& operator=(const directory_entry&) = default;
179 directory_entry& operator=(directory_entry&&) noexcept = default;
219 bool operator==(const directory_entry& rhs) const noexcept;
220 bool operator!=(const directory_entry& rhs) const noexcept; // removed in C++20
221 bool operator< (const directory_entry& rhs) const noexcept; // removed in C++20
222 bool operator<=(const directory_entry& rhs) const noexcept; // removed in C++20
223 bool operator> (const directory_entry& rhs) const noexcept; // removed in C++20
224 bool operator>=(const directory_entry& rhs) const noexcept; // removed in C++20
225 strong_ordering operator<=>(const directory_entry& rhs) const noexcept; // since C++20
229 operator<<(basic_ostream<charT, traits>& os, const directory_entry& d);
435 #include <__filesystem/directory_entry.h>