| /llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerIO.cpp | 183 if (IsDirectory(Dir)) { in MkDirRecursiveInner() 185 return IsDirectory(Leaf); in MkDirRecursiveInner() 195 return IsDirectory(Leaf); in MkDirRecursiveInner() 202 if (IsDirectory(Dir)) in MkDirRecursive()
|
| H A D | FuzzerIOPosix.cpp | 34 bool IsDirectory(const std::string &Path) { in IsDirectory() function 72 (E->d_type == DT_UNKNOWN && IsDirectory(Path))) && in ListFilesInDirRecursive() 94 (E->d_type == DT_UNKNOWN && IsDirectory(Path))) && in IterateDirRecursive()
|
| H A D | FuzzerIO.h | 70 bool IsDirectory(const std::string &Path);
|
| H A D | FuzzerIOWindows.cpp | 79 bool IsDirectory(const std::string &Path) { in IsDirectory() function
|
| H A D | FuzzerDriver.cpp | 261 if (IsDirectory(Path)) in ValidateDirectoryExists()
|
| /llvm-project/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwinKernel.cpp | 357 if (FileSystem::Instance().IsDirectory(possible_dir)) in CollectKextAndKernelDirectories() 374 if (FileSystem::Instance().IsDirectory(dir)) { in GetUserSpecifiedDirectoriesToSearch() 391 if (FileSystem::Instance().IsDirectory(testdir)) in AddRootSubdirsToSearchPaths() 525 if (FileSystem::Instance().IsDirectory(contents_plugins)) { in GetKernelsAndKextsInDirectoryHelper() 529 if (FileSystem::Instance().IsDirectory(plugins)) { in GetKernelsAndKextsInDirectoryHelper() 613 if (FileSystem::Instance().IsDirectory(dsym_fspec)) { in KextHasdSYMSibling() 628 if (FileSystem::Instance().IsDirectory(dsym_fspec)) { in KextHasdSYMSibling() 639 return FileSystem::Instance().IsDirectory(dsym_fspec); in KextHasdSYMSibling() 650 return FileSystem::Instance().IsDirectory(kernel_dsym); in KernelHasdSYMSibling()
|
| H A D | PlatformDarwin.cpp | 328 if (FileSystem::Instance().IsDirectory(sym_file)) { 763 if (!FileSystem::Instance().IsDirectory(sdks_spec)) { in FindSDKInXcodeForModules() 779 if (FileSystem::Instance().IsDirectory(enumerator_info.found_path)) in GetSDKDirectoryForModules() 1147 if (!FileSystem::Instance().IsDirectory(sysroot_spec.GetPath())) { in GetOSVersion() 1152 if (FileSystem::Instance().IsDirectory(sysroot_spec.GetPath())) { in GetOSVersion()
|
| /llvm-project/llvm/tools/llvm-readtapi/ |
| H A D | llvm-readtapi.cpp | 341 bool IsDirectory = false; in stubifyDirectory() 342 if (auto EC = sys::fs::is_directory(Path, IsDirectory)) in stubifyDirectory() 344 if (IsDirectory) in stubifyDirectory() 444 bool IsDirectory = false; in handleSingleFileAction() 445 if (auto EC = sys::fs::is_directory(PathName, IsDirectory)) in handleSingleFileAction() 448 if (IsDirectory) { in setStubOptions() 307 bool IsDirectory = false; stubifyDirectory() local 410 bool IsDirectory = false; handleStubifyAction() local
|
| /llvm-project/third-party/unittest/googletest/src/ |
| H A D | gtest-filepath.cc | 326 bool FilePath::IsDirectory() const { in IsDirectory() function in testing::internal::FilePath 335 if (!this->IsDirectory()) { in CreateDirectoriesRecursively() 378 return IsDirectory() ? FilePath(pathname_.substr(0, pathname_.length() - 1)) in RemoveTrailingPathSeparator()
|
| /llvm-project/llvm/unittests/Support/ |
| H A D | FileCollectorTest.cpp | 149 bool IsDirectory = false; in TEST() local 153 ec = sys::fs::is_directory(SubdirInRoot, IsDirectory); in TEST() 155 ASSERT_TRUE(IsDirectory); in TEST()
|
| /llvm-project/lldb/include/lldb/Host/ |
| H A D | FileSystem.h | 123 bool IsDirectory(const FileSpec &file_spec) const; 124 bool IsDirectory(const llvm::Twine &path) const;
|
| /llvm-project/third-party/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-filepath.h | 170 bool IsDirectory() const;
|
| /llvm-project/lldb/source/Host/common/ |
| H A D | FileSystem.cpp | 151 bool FileSystem::IsDirectory(const Twine &path) const { in IsDirectory() function in FileSystem 158 bool FileSystem::IsDirectory(const FileSpec &file_spec) const { in IsDirectory() function in FileSystem 159 return file_spec && IsDirectory(file_spec.GetPath()); in IsDirectory()
|
| /llvm-project/llvm/include/llvm/Support/ |
| H A D | VirtualFileSystem.h | 666 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false) 668 IsDirectory(IsDirectory) {} 671 bool IsDirectory = false; 1124 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory); 658 bool IsDirectory = false; global() member
|
| /llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangHost.cpp | 32 if (FileSystem::Instance().IsDirectory(clang_path)) in VerifyClangPath()
|
| H A D | ClangModulesDeclVendor.cpp | 694 if (FileSystem::Instance().IsDirectory(clang_resource_dir.GetPath())) { in Create()
|
| /llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
| H A D | SymbolLocatorDefault.cpp | 186 if (!FileSystem::Instance().IsDirectory(dirspec)) in LocateExecutableSymbolFile()
|
| /llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/ |
| H A D | SymbolLocatorDebugSymbols.cpp | 155 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateExecutableObjectFile() 597 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateMacOSXFilesUsingDebugSymbols()
|
| /llvm-project/lldb/unittests/Host/ |
| H A D | FileSystemTest.cpp | 342 EXPECT_FALSE(fs.IsDirectory(spec)); in TEST()
|
| /llvm-project/llvm/lib/Support/ |
| H A D | VirtualFileSystem.cpp | 2738 bool IsDirectory) { in addDirectoryMapping() 2742 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); 2746 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false); 2751 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true); 2855 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath) in write() 2866 if (!Entry.IsDirectory) { in write() 2873 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath); in write() 2897 if (!Entry.IsDirectory) { in write() 2725 addEntry(StringRef VirtualPath,StringRef RealPath,bool IsDirectory) addEntry() argument
|
| /llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessDebugger.cpp | 118 if (!FileSystem::Instance().IsDirectory(working_dir)) { in LaunchProcess()
|
| /llvm-project/lldb/source/API/ |
| H A D | SBPlatform.cpp | 517 if (FileSystem::Instance().IsDirectory(src.ref())) in Put()
|
| /llvm-project/lldb/source/Target/ |
| H A D | TargetList.cpp | 292 if (FileSystem::Instance().IsDirectory(file)) in CreateTargetInternal()
|
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandCompletions.cpp | 454 is_dir = fs.IsDirectory(symlink_filespec); in DiskFilesOrDirectories()
|
| /llvm-project/lldb/source/Core/ |
| H A D | ModuleList.cpp | 881 if (!FileSystem::Instance().IsDirectory(search_path_spec)) in GetSharedModule()
|