/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/ |
D | status_known.pass.cpp | 31 ASSERT_SAME_TYPE(decltype(status_known(s)), bool); in TEST_CASE() 32 ASSERT_NOEXCEPT(status_known(s)); in TEST_CASE() 55 TEST_CHECK(status_known(s) == TC.expect); in TEST_CASE()
|
/external/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/ |
D | status_known.pass.cpp | 30 ASSERT_SAME_TYPE(decltype(status_known(s)), bool); in TEST_CASE() 31 ASSERT_NOEXCEPT(status_known(s)); in TEST_CASE() 54 TEST_CHECK(status_known(s) == TC.expect); in TEST_CASE()
|
/external/llvm-project/libcxx/src/filesystem/ |
D | operations.cpp | 339 bool status_known() const { return _VSTD_FS::status_known(m_status); } in status_known() function 573 if (not status_known(t)) in __copy() local 745 if (!status_known(to_st)) in __copy_file() 825 if (!status_known(st)) in __create_directories() 835 if (not status_known(parent_st)) in __create_directories() local 863 if (!status_known(st)) in __create_directory() 1206 if (!status_known(st)) in __temp_directory_path() 1233 if (!status_known(st)) { in __weakly_canonical() 1667 if (!status_known(st)) { in __do_refresh() 1689 if (!status_known(st)) { in __do_refresh() [all …]
|
D | directory_iterator.cpp | 364 if (m_ec && status_known(st)) in __try_recursion() 370 if (m_ec && status_known(st)) in __try_recursion()
|
/external/libcxx/src/filesystem/ |
D | operations.cpp | 348 bool status_known() const { return _VSTD_FS::status_known(m_status); } in status_known() function 573 if (not status_known(t)) in __copy() local 758 if (!status_known(to_st)) in __copy_file() 838 if (!status_known(st)) in __create_directories() 848 if (not status_known(parent_st)) in __create_directories() local 876 if (!status_known(st)) in __create_directory() 1208 if (!status_known(st)) in __temp_directory_path() 1235 if (!status_known(st)) { in __weakly_canonical() 1669 if (!status_known(st)) { in __do_refresh() 1691 if (!status_known(st)) { in __do_refresh() [all …]
|
D | directory_iterator.cpp | 362 if (m_ec && status_known(st)) in __try_recursion() 368 if (m_ec && status_known(st)) in __try_recursion()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | FileSystem.h | 560 bool status_known(file_status s); 568 std::error_code status_known(const Twine &path, bool &result);
|
/external/llvm/include/llvm/Support/ |
D | FileSystem.h | 549 bool status_known(file_status s); 557 std::error_code status_known(const Twine &path, bool &result);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | FileSystem.h | 724 bool status_known(const basic_file_status &s); 732 std::error_code status_known(const Twine &path, bool &result);
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | FileSystem.h | 704 bool status_known(const basic_file_status &s); 712 std::error_code status_known(const Twine &path, bool &result);
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 931 return status_known(status) && status.type() != file_type::file_not_found; in exists() 934 bool status_known(file_status s) { in status_known() function
|
/external/llvm/lib/Support/ |
D | Path.cpp | 929 return status_known(status) && status.type() != file_type::file_not_found; in exists() 932 bool status_known(file_status s) { in status_known() function
|
/external/libcxx/include/experimental/ |
D | filesystem | 217 bool status_known(file_status s) noexcept;
|
/external/llvm-project/libcxx/include/experimental/ |
D | filesystem | 216 bool status_known(file_status s) noexcept;
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 374 assert(status_known(A) && status_known(B));
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Path.cpp | 1049 return status_known(status) && status.type() != file_type::file_not_found; in exists() 1052 bool status_known(const basic_file_status &s) { in status_known() function
|
/external/llvm-project/llvm/lib/Support/ |
D | Path.cpp | 1076 return status_known(status) && status.type() != file_type::file_not_found; in exists() 1079 bool status_known(const basic_file_status &s) { in status_known() function
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Path.inc | 393 assert(status_known(A) && status_known(B));
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 367 assert(status_known(A) && status_known(B));
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 369 assert(status_known(A) && status_known(B));
|
/external/libcxx/include/ |
D | filesystem | 217 bool status_known(file_status s) noexcept; 1602 inline _LIBCPP_INLINE_VISIBILITY bool status_known(file_status __s) noexcept { 1607 return status_known(__s) && __s.type() != file_type::not_found; 1617 if (status_known(__s))
|
/external/llvm-project/libcxx/include/ |
D | filesystem | 216 bool status_known(file_status s) noexcept; 1654 inline _LIBCPP_INLINE_VISIBILITY bool status_known(file_status __s) noexcept { 1659 return status_known(__s) && __s.type() != file_type::not_found; 1669 if (status_known(__s))
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Path.inc | 601 assert(status_known(A) && status_known(B));
|
/external/llvm-project/llvm/lib/Support/Unix/ |
D | Path.inc | 625 assert(status_known(A) && status_known(B));
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 601 assert(status_known(A) && status_known(B));
|