Searched refs:is_other (Results 1 – 9 of 9) sorted by relevance
121 …_LIBCPP_HIDE_FROM_ABI bool is_other() const { return filesystem::is_other(file_status{__get_ft()})… in is_other() function123 _LIBCPP_HIDE_FROM_ABI bool is_other(error_code& __ec) const noexcept { in is_other() function124 return filesystem::is_other(file_status{__get_ft(&__ec)}); in is_other()
203 inline _LIBCPP_HIDE_FROM_ABI bool is_other(file_status __s) noexcept { in is_other() function206 inline _LIBCPP_HIDE_FROM_ABI bool is_other(const path& __p) { return is_other(__status(__p)); } in is_other() function207 inline _LIBCPP_HIDE_FROM_ABI bool is_other(const path& __p, error_code& __ec) noexcept { in is_other() function208 return is_other(__status(__p, &__ec)); in is_other()
203 bool is_other() const;204 bool is_other(error_code& ec) const noexcept;454 bool is_other(file_status s) noexcept;455 bool is_other(const path& p);456 bool is_other(const path& p, error_code& ec) noexcept;
31 SYMBOL(is_other, std::experimental::filesystem::, <experimental/filesystem>)
3456 SYMBOL(is_other, std::filesystem::, <filesystem>)
1129 bool is_other(const basic_file_status &status) { in is_other() function1135 std::error_code is_other(const Twine &Path, bool &Result) { in is_other() function1139 Result = is_other(FileStatus); in is_other()
617 bool is_other(const basic_file_status &status);627 std::error_code is_other(const Twine &path, bool &result);
124 if (!exists(f) || is_other(f) || is_other(t) || (is_directory(f) && is_regular_file(t)) || in __copy()