Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/libcxx/include/__filesystem/
HDdirectory_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()
HDoperations.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-13-stable/contrib/llvm-project/libcxx/include/
HDfilesystem203 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-13-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
HDStdTsSymbolMap.inc31 SYMBOL(is_other, std::experimental::filesystem::, <experimental/filesystem>)
HDStdSymbolMap.inc3456 SYMBOL(is_other, std::filesystem::, <filesystem>)
/freebsd-13-stable/contrib/llvm-project/libcxx/modules/std/
HDfilesystem.inc84 using std::filesystem::is_other;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
HDPath.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-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDFileSystem.h617 bool is_other(const basic_file_status &status);
627 std::error_code is_other(const Twine &path, bool &result);
/freebsd-13-stable/contrib/llvm-project/libcxx/src/filesystem/
HDoperations.cpp124 if (!exists(f) || is_other(f) || is_other(t) || (is_directory(f) && is_regular_file(t)) || in __copy()