Home
last modified time | relevance | path

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

/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/
Dis_other.pass.cpp35 ASSERT_NOEXCEPT(is_other(s)); in TEST_CASE()
36 ASSERT_NOEXCEPT(is_other(p, ec)); in TEST_CASE()
37 ASSERT_NOT_NOEXCEPT(is_other(p)); in TEST_CASE()
60 TEST_CHECK(is_other(s) == TC.expect); in TEST_CASE()
67 TEST_CHECK(is_other(p) == false); in TEST_CASE()
78 TEST_CHECK(is_other(file, ec) == false); in TEST_CASE()
81 TEST_CHECK_THROW(filesystem_error, is_other(file)); in TEST_CASE()
/external/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/
Dfile_type_obs.pass.cpp50 TEST_FUNC(is_other); in TEST_CASE()
81 TEST_CHECK(e.is_other() == is_other(st)); in TEST_CASE()
132 TEST_CHECK(e.is_other(ec) == is_other(st)); in TEST_CASE()
181 TEST_CHECK(e.is_other(ec) == is_other(st)); in TEST_CASE()
244 TEST_CHECK(e.is_other(ec) == is_other(st)); in TEST_CASE()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DFileSystem.h296 bool is_other(file_status status);
306 error_code is_other(const Twine &path, bool &result);
/external/libcxx/include/experimental/
Dfilesystem160 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;
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/
Dequivalent.pass.cpp105 TEST_REQUIRE(is_other(fifo1)); in TEST_CASE()
/external/libcxx/include/
Dfilesystem160 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 {
[all …]
/external/llvm/include/llvm/Support/
DFileSystem.h500 bool is_other(file_status status);
510 std::error_code is_other(const Twine &path, bool &result);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFileSystem.h511 bool is_other(file_status status);
521 std::error_code is_other(const Twine &path, bool &result);
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp962 bool is_other(file_status status) { in is_other() function
968 std::error_code is_other(const Twine &Path, bool &Result) { in is_other() function
972 Result = is_other(FileStatus); in is_other()
/external/llvm/lib/Support/
DPath.cpp960 bool is_other(file_status status) { in is_other() function
966 std::error_code is_other(const Twine &Path, bool &Result) { in is_other() function
970 Result = is_other(FileStatus); in is_other()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFileSystem.h602 bool is_other(const basic_file_status &status);
612 std::error_code is_other(const Twine &path, bool &result);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DPath.cpp1065 bool is_other(const basic_file_status &status) { in is_other() function
1071 std::error_code is_other(const Twine &Path, bool &Result) { in is_other() function
1075 Result = is_other(FileStatus); in is_other()
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/
Dcopy.pass.cpp71 TEST_REQUIRE(is_other(fifo)); in TEST_CASE()
/external/swiftshader/third_party/LLVM/lib/Support/
DPathV2.cpp708 bool is_other(file_status status) { in is_other() function
/external/libcxx/src/filesystem/
Doperations.cpp576 if (!exists(f) || is_other(f) || is_other(t) || in __copy()