/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/ |
D | is_other.pass.cpp | 35 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/ |
D | file_type_obs.pass.cpp | 50 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/ |
D | FileSystem.h | 296 bool is_other(file_status status); 306 error_code is_other(const Twine &path, bool &result);
|
/external/libcxx/include/experimental/ |
D | filesystem | 160 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/ |
D | equivalent.pass.cpp | 105 TEST_REQUIRE(is_other(fifo1)); in TEST_CASE()
|
/external/libcxx/include/ |
D | filesystem | 160 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/ |
D | FileSystem.h | 500 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/ |
D | FileSystem.h | 511 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/ |
D | Path.cpp | 962 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/ |
D | Path.cpp | 960 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/ |
D | FileSystem.h | 602 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/ |
D | Path.cpp | 1065 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/ |
D | copy.pass.cpp | 71 TEST_REQUIRE(is_other(fifo)); in TEST_CASE()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | PathV2.cpp | 708 bool is_other(file_status status) { in is_other() function
|
/external/libcxx/src/filesystem/ |
D | operations.cpp | 576 if (!exists(f) || is_other(f) || is_other(t) || in __copy()
|