Home
last modified time | relevance | path

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

/external/libcxx/test/std/experimental/filesystem/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/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/src/experimental/filesystem/
Doperations.cpp198 if (!exists(f) || is_other(f) || is_other(t) in __copy()
435 if ((!exists(s1) && !exists(s2)) || (is_other(s1) && is_other(s2))) { in __equivalent()
/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/libcxx/include/experimental/
Dfilesystem158 bool is_other(file_status s) _NOEXCEPT;
159 bool is_other(const path& p);
160 bool is_other(const path& p, error_code& ec) _NOEXCEPT;
1625 bool is_other(file_status __s) _NOEXCEPT {
1631 bool is_other(const path& __p) {
1632 return is_other(__status(__p));
1636 bool is_other(const path& __p, error_code& __ec) _NOEXCEPT {
1637 return is_other(__status(__p, &__ec));
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy/
Dcopy.pass.cpp72 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