Lines Matching refs:is_other
160 bool is_other(file_status s) noexcept;
161 bool is_other(const path& p);
162 bool is_other(const path& p, error_code& ec) noexcept;
1751 inline _LIBCPP_INLINE_VISIBILITY bool is_other(file_status __s) noexcept {
1756 inline _LIBCPP_INLINE_VISIBILITY bool is_other(const path& __p) {
1757 return is_other(__status(__p));
1760 inline _LIBCPP_INLINE_VISIBILITY bool is_other(const path& __p,
1762 return is_other(__status(__p, &__ec));
2047 bool is_other() const { return _VSTD_FS::is_other(file_status{__get_ft()}); }
2050 bool is_other(error_code& __ec) const noexcept {
2051 return _VSTD_FS::is_other(file_status{__get_ft(&__ec)});