| /llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/ |
| H A D | StdSymbolMap.inc | 1415 SYMBOL(absolute, std::filesystem::, <filesystem>) 1417 SYMBOL(copy, std::filesystem::, <filesystem>) 1431 SYMBOL(exists, std::filesystem::, <filesystem>) 1442 SYMBOL(is_fifo, std::filesystem::, <filesystem>) 1448 SYMBOL(path, std::filesystem::, <filesystem>) 1451 SYMBOL(perms, std::filesystem::, <filesystem>) 1456 SYMBOL(remove, std::filesystem::, <filesystem>) 1458 SYMBOL(rename, std::filesystem::, <filesystem>) 1460 SYMBOL(space, std::filesystem::, <filesystem>) 1462 SYMBOL(status, std::filesystem::, <filesystem>) [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.req.namespace/ |
| H A D | namespace.pass.cpp | 20 using namespace std::filesystem; 25 std::filesystem::path in main()
|
| H A D | namespace.fail.cpp | 18 using namespace std::filesystem;
|
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | filesystem_include.h | 8 namespace fs = std::__fs::filesystem; 10 namespace fs = std::filesystem;
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.filesystem.synopsis/ |
| H A D | enable_borrowed_range.compile.pass.cpp | 29 test<std::filesystem::directory_iterator>(); in test() 30 test<std::filesystem::recursive_directory_iterator>(); in test()
|
| H A D | enable_view.compile.pass.cpp | 29 test<std::filesystem::directory_iterator>(); in test() 30 test<std::filesystem::recursive_directory_iterator>(); in test()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | filesystem | 13 filesystem synopsis 15 namespace std::filesystem { 228 } // namespace std::filesystem 231 inline constexpr bool std::ranges::enable_borrowed_range<std::filesystem::directory_iterator> = tru… 233 inline constexpr bool std::ranges::enable_borrowed_range<std::filesystem::recursive_directory_itera… 236 inline constexpr bool std::ranges::enable_view<std::filesystem::directory_iterator> = true; 238 inline constexpr bool std::ranges::enable_view<std::filesystem::recursive_directory_iterator> = tru… 266 # error "The <filesystem> library is not supported since libc++ has been configured without support…
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/ |
| H A D | lit.local.cfg | 2 # Automatically disable the <filesystem> tests when we're running the test 9 if 'no-filesystem' in config.available_features:
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ifstream.members/ |
| H A D | open_path.pass.cpp | 38 fs.open(std::filesystem::path("test.dat")); in main() 51 fs.open(std::filesystem::path("test.dat")); in main()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/src/ |
| H A D | BUILD.gn | 18 # Build filesystem as part of libc++fs.a. 211 "filesystem/directory_iterator.cpp", 212 "filesystem/filesystem_common.h", 213 "filesystem/operations.cpp", 214 "filesystem/posix_compat.h", 217 cxx_sources += [ "filesystem/int128_builtins.cpp" ]
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | cxx11-crashes.cpp | 24 namespace filesystem namespace 31 namespace fs = boost::filesystem; in radar11487541()
|
| /llvm-project-15.0.7/libcxx/docs/DesignDocs/ |
| H A D | FileTimeType.rst | 13 The filesystem library provides interfaces for getting and setting the last 16 "filesystem clock". According to [fs.filesystem.syn] 39 our own filesystem clock which specifies the period and representation of 88 I believe the answer is yes. We're not designing the filesystem time API, we're 91 on users that are not present in the underlying filesystem. 93 Having a smaller range that the underlying filesystem forces the 101 #include <filesystem> 102 using namespace std::filesystem; 155 supported by the underlying filesystem; meaning ``last_write_time(p)`` will 159 create a time point beyond what the filesystem can represent. Two particular [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/iterator.primitives/iterator.traits/ |
| H A D | cxx20_iterator_traits.compile.pass.cpp | 160 static_assert(test<std::filesystem::directory_iterator, std::input_iterator_tag, std::filesystem::d… 161 …std::ptrdiff_t, const std::filesystem::directory_entry&, const std::filesystem::directory_entry*>(… 162 static_assert(test<std::filesystem::recursive_directory_iterator, std::input_iterator_tag, 163 … std::filesystem::directory_entry, std::ptrdiff_t, const std::filesystem::directory_entry&, 164 const std::filesystem::directory_entry*>());
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | Docker.rst | 34 A snapshot of a docker container filesystem is called a *docker image*. 43 image, docker will first download your base image, mount its filesystem as 45 filesystem modifications, performed while building your image. When the build 46 process is finished, a diff between your image's final filesystem state and the 47 base image's filesystem is stored in the resulting image. 175 Due to how Docker's filesystem works, all intermediate writes are persisted in
|
| /llvm-project-15.0.7/libcxx/src/ |
| H A D | CMakeLists.txt | 119 filesystem/filesystem_common.h 120 filesystem/operations.cpp 121 filesystem/directory_iterator.cpp 122 filesystem/posix_compat.h 127 # definitions. See filesystem/int128_builtins.cpp. 130 filesystem/int128_builtins.cpp
|
| /llvm-project-15.0.7/libcxx/test/libcxx/input.output/filesystems/ |
| H A D | lit.local.cfg | 1 # Load the same local configuration as the filesystem tests in libcxx/test/std
|
| /llvm-project-15.0.7/clang/test/Lexer/ |
| H A D | case-insensitive-include-pr31836.sh | 1 // REQUIRES: case-insensitive-filesystem
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/ |
| H A D | path.pass.cpp | 31 namespace fs = std::filesystem;
|
| /llvm-project-15.0.7/libcxx/test/libcxx/transitive_includes/ |
| H A D | expected.filesystem | 23 filesystem
|
| H A D | expected.fstream | 23 filesystem
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/ |
| H A D | path.pass.cpp | 29 namespace fs = std::filesystem;
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/ |
| H A D | open_path.pass.cpp | 29 std::filesystem::path p = get_temp_file_name(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/ |
| H A D | open_path.pass.cpp | 28 namespace fs = std::filesystem;
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/ |
| H A D | path.pass.cpp | 28 namespace fs = std::filesystem;
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/filebuf.members/ |
| H A D | open_path.pass.cpp | 25 namespace fs = std::filesystem;
|