Searched refs:file_not_found (Results 1 – 16 of 16) sorted by relevance
/third_party/boost/boost/filesystem/ |
D | file_status.hpp | 46 file_not_found, enumerator 209 return f.type() != status_error && f.type() != file_not_found; in exists()
|
/third_party/boost/libs/filesystem/example/ |
D | error_demo.cpp | 54 case fs::file_not_found: in report_status()
|
/third_party/boost/boost/system/ |
D | windows_error.hpp | 51 file_not_found = boost::winapi::ERROR_FILE_NOT_FOUND_, enumerator
|
/third_party/boost/libs/filesystem/src/ |
D | operations.cpp | 283 if (type == fs::file_not_found) in remove_file_or_directory() 673 return fs::file_status(fs::file_not_found, fs::no_perms); in process_status_failure() 867 if (stat.type() == fs::file_not_found) in canonical() 1399 if (parent_status.type() == file_not_found) in create_directories() 2118 return (type != status_error && type != file_not_found) // exists in remove_all() 2247 return fs::file_status(fs::file_not_found, fs::no_perms); in status() 2345 return fs::file_status(fs::file_not_found, fs::no_perms); in symlink_status() 2569 if (head_status.type() != fs::file_not_found) in weakly_canonical()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileOutputBuffer.cpp | 190 case fs::file_type::file_not_found: in create()
|
D | Path.cpp | 1049 return status_known(status) && status.type() != file_type::file_not_found; in exists()
|
D | VirtualFileSystem.cpp | 107 return isStatusKnown() && Type != file_type::file_not_found; in exists()
|
/third_party/boost/libs/filesystem/test/ |
D | operations_unit_test.cpp | 90 CHECK(status("no-such-file") == file_status(file_not_found, no_perms)); in query_test()
|
D | operations_test.cpp | 741 BOOST_TEST(it->status().type() == fs::file_not_found); in iterator_status_tests() 751 BOOST_TEST(it->status().type() == fs::file_not_found); in iterator_status_tests() 1260 BOOST_TEST_EQ(s.type(), fs::file_not_found); in status_of_nonexistent_tests() 1304 BOOST_TEST_EQ(s.type(), fs::file_not_found); in status_error_reporting_tests() 1712 BOOST_TEST_EQ(fs::status(dangling_sym, ec).type(), fs::file_not_found); in symlink_status_tests() 1713 BOOST_TEST_EQ(fs::status(dangling_directory_sym, ec).type(), fs::file_not_found); in symlink_status_tests()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | FileSystem.h | 57 file_not_found, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | FileSystem.h | 68 file_not_found, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 931 return status_known(status) && status.type() != file_type::file_not_found; in exists()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Path.inc | 413 Result = file_status(file_type::file_not_found);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 460 Result = file_status(file_type::file_not_found);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Path.inc | 691 Result = file_status(file_type::file_not_found);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 698 Result = file_status(file_type::file_not_found);
|