Home
last modified time | relevance | path

Searched refs:filesystem (Results 1 – 25 of 69) sorted by relevance

123

/llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc1415 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 Dnamespace.pass.cpp20 using namespace std::filesystem;
25 std::filesystem::path in main()
H A Dnamespace.fail.cpp18 using namespace std::filesystem;
/llvm-project-15.0.7/libcxx/test/support/
H A Dfilesystem_include.h8 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 Denable_borrowed_range.compile.pass.cpp29 test<std::filesystem::directory_iterator>(); in test()
30 test<std::filesystem::recursive_directory_iterator>(); in test()
H A Denable_view.compile.pass.cpp29 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 Dfilesystem13 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 Dlit.local.cfg2 # 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 Dopen_path.pass.cpp38 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 DBUILD.gn18 # 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 Dcxx11-crashes.cpp24 namespace filesystem namespace
31 namespace fs = boost::filesystem; in radar11487541()
/llvm-project-15.0.7/libcxx/docs/DesignDocs/
H A DFileTimeType.rst13 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 Dcxx20_iterator_traits.compile.pass.cpp160 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 DDocker.rst34 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 DCMakeLists.txt119 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 Dlit.local.cfg1 # Load the same local configuration as the filesystem tests in libcxx/test/std
/llvm-project-15.0.7/clang/test/Lexer/
H A Dcase-insensitive-include-pr31836.sh1 // REQUIRES: case-insensitive-filesystem
/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/
H A Dpath.pass.cpp31 namespace fs = std::filesystem;
/llvm-project-15.0.7/libcxx/test/libcxx/transitive_includes/
H A Dexpected.filesystem23 filesystem
H A Dexpected.fstream23 filesystem
/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/
H A Dpath.pass.cpp29 namespace fs = std::filesystem;
/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/
H A Dopen_path.pass.cpp29 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 Dopen_path.pass.cpp28 namespace fs = std::filesystem;
/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/
H A Dpath.pass.cpp28 namespace fs = std::filesystem;
/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/filebuf.members/
H A Dopen_path.pass.cpp25 namespace fs = std::filesystem;

123