Home
last modified time | relevance | path

Searched refs:is_other (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Ddirectory_entry.h121 …_LIBCPP_HIDE_FROM_ABI bool is_other() const { return filesystem::is_other(file_status{__get_ft()})… in is_other() function
123 _LIBCPP_HIDE_FROM_ABI bool is_other(error_code& __ec) const noexcept { in is_other() function
124 return filesystem::is_other(file_status{__get_ft(&__ec)}); in is_other()
H A Doperations.h203 inline _LIBCPP_HIDE_FROM_ABI bool is_other(file_status __s) noexcept { in is_other() function
206 inline _LIBCPP_HIDE_FROM_ABI bool is_other(const path& __p) { return is_other(__status(__p)); } in is_other() function
207 inline _LIBCPP_HIDE_FROM_ABI bool is_other(const path& __p, error_code& __ec) noexcept { in is_other() function
208 return is_other(__status(__p, &__ec)); in is_other()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dfilesystem203 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;
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdTsSymbolMap.inc31 SYMBOL(is_other, std::experimental::filesystem::, <experimental/filesystem>)
H A DStdSymbolMap.inc3456 SYMBOL(is_other, std::filesystem::, <filesystem>)
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfilesystem.cppm
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp1129 bool is_other(const basic_file_status &status) { in is_other() function
1135 std::error_code is_other(const Twine &Path, bool &Result) { in is_other() function
1139 Result = is_other(FileStatus); in is_other()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h617 bool is_other(const basic_file_status &status);
627 std::error_code is_other(const Twine &path, bool &result);
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp124 if (!exists(f) || is_other(f) || is_other(t) || (is_directory(f) && is_regular_file(t)) || in __copy()