|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/Support/FileSystem.h 335 std::error_code create_directory(const Twine &path, bool IgnoreExisting = true,
References
lib/Support/Path.cpp 206 EC = sys::fs::create_directory(ResultPath.begin(), false);
921 std::error_code EC = create_directory(P, IgnoreExisting, Perms);
936 return create_directory(P, IgnoreExisting, Perms);
tools/clang/lib/ARCMigrate/FileRemapper.cpp 112 if (fs::create_directory(outputDir))
tools/clang/lib/Driver/ToolChains/Clang.cpp 1988 auto Err = llvm::sys::fs::create_directory(Path, /*IgnoreExisting=*/true);
tools/clang/unittests/DirectoryWatcher/DirectoryWatcherTest.cpp 54 create_directory(TestWatchedDir, false);
tools/lldb/source/Host/common/Editline.cpp 183 if (!llvm::sys::fs::create_directory(lldb_history_file)) {
tools/lldb/source/Host/common/HostInfoBase.cpp 277 if (llvm::sys::fs::create_directory(temp_file_spec.GetPath()))
300 if (llvm::sys::fs::create_directory(temp_file_spec.GetPath()))
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp 199 return llvm::sys::fs::create_directory(module_cache_folder.GetPath());
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp 271 llvm::sys::fs::create_directory(module_cache_folder.GetPath()));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp 802 Status error(llvm::sys::fs::create_directory(path, mode));
tools/lldb/source/Target/Platform.cpp 763 return llvm::sys::fs::create_directory(file_spec.GetPath(), permissions);
tools/lldb/source/Utility/Reproducer.cpp 38 auto ec = sys::fs::create_directory(root->GetPath());
tools/lldb/tools/lldb-server/lldb-platform.cpp 100 Status error(llvm::sys::fs::create_directory(temp_file_spec.GetPath()));
unittests/Support/CommandLineTest.cpp 801 EC = llvm::sys::fs::create_directory(IncDir);
unittests/Support/FileCollectorTest.cpp 48 EC = llvm::sys::fs::create_directory(Twine(Path));
unittests/Support/LockFileManagerTest.cpp 99 sys::fs::create_directory("inner");
unittests/Support/Path.cpp 734 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "foo"));
735 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "foo"));
736 ASSERT_EQ(fs::create_directory(Twine(TestDirectory) + "foo", false),
746 fs::create_directory(Twine(TestDirectory) + "baz500", false,
751 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "baz777", false,
unittests/Support/VirtualFileSystemTest.cpp 427 EC = llvm::sys::fs::create_directory(Twine(Path));