Lines Matching refs:other
66 fs::directory_entry::operator==(const directory_entry& other) const in operator ==()
68 return name == other.name; in operator ==()
78 fs::directory_entry::operator!=(const directory_entry& other) const in operator !=()
80 return !(*this == other); in operator !=()
90 fs::directory_entry::operator<(const directory_entry& other) const in operator <()
92 return name < other.name; in operator <()
258 detail::directory_iterator::operator==(const directory_iterator& other) const in operator ==()
260 return (_pimpl->_dirp == NULL && other._pimpl->_dirp == NULL) || in operator ==()
261 _pimpl == other._pimpl; in operator ==()
271 detail::directory_iterator::operator!=(const directory_iterator& other) const in operator !=()
273 return !(*this == other); in operator !=()