Home
last modified time | relevance | path

Searched refs:IsDirectory (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-head/contrib/llvm-project/compiler-rt/lib/fuzzer/
HDFuzzerIO.cpp183 if (IsDirectory(Dir)) { in MkDirRecursiveInner()
185 return IsDirectory(Leaf); in MkDirRecursiveInner()
195 return IsDirectory(Leaf); in MkDirRecursiveInner()
202 if (IsDirectory(Dir)) in MkDirRecursive()
HDFuzzerIOPosix.cpp34 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()
HDFuzzerIO.h70 bool IsDirectory(const std::string &Path);
HDFuzzerIOWindows.cpp79 bool IsDirectory(const std::string &Path) { in IsDirectory() function
HDFuzzerDriver.cpp261 if (IsDirectory(Path)) in ValidateDirectoryExists()
/freebsd-head/contrib/googletest/googletest/src/
HDgtest-filepath.cc326 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()
/freebsd-head/contrib/llvm-project/lldb/include/lldb/Host/
HDFileSystem.h123 bool IsDirectory(const FileSpec &file_spec) const;
124 bool IsDirectory(const llvm::Twine &path) const;
/freebsd-head/contrib/googletest/googletest/test/
HDgoogletest-filepath-test.cc612 TEST(FilePathTest, IsDirectory) { in TEST() argument
613 EXPECT_FALSE(FilePath("cola").IsDirectory()); in TEST()
614 EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).IsDirectory()); in TEST()
616 EXPECT_TRUE(FilePath("koala/").IsDirectory()); in TEST()
/freebsd-head/contrib/googletest/googletest/include/gtest/internal/
HDgtest-filepath.h176 bool IsDirectory() const;
/freebsd-head/contrib/llvm-project/lldb/source/Host/common/
HDFileSystem.cpp151 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()
/freebsd-head/contrib/llvm-project/llvm/include/llvm/Support/
HDVirtualFileSystem.h653 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
655 IsDirectory(IsDirectory) {} in VPath()
658 bool IsDirectory = false; member
1111 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
HDClangHost.cpp32 if (FileSystem::Instance().IsDirectory(clang_path)) in VerifyClangPath()
HDClangModulesDeclVendor.cpp695 if (FileSystem::Instance().IsDirectory(clang_resource_dir.GetPath())) { in Create()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
HDSymbolLocatorDefault.cpp186 if (!FileSystem::Instance().IsDirectory(dirspec)) in LocateExecutableSymbolFile()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
HDSymbolLocatorDebugSymbols.cpp155 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateExecutableObjectFile()
597 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateMacOSXFilesUsingDebugSymbols()
/freebsd-head/contrib/llvm-project/llvm/lib/Support/
HDVirtualFileSystem.cpp2725 bool IsDirectory) { in addEntry() argument
2729 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); in addEntry()
2842 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath) in write()
2853 if (!Entry.IsDirectory) { in write()
2860 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath); in write()
2884 if (!Entry.IsDirectory) { in write()
/freebsd-head/contrib/llvm-project/lldb/source/API/
HDSBPlatform.cpp517 if (FileSystem::Instance().IsDirectory(src.ref())) in Put()
/freebsd-head/contrib/llvm-project/lldb/source/Target/
HDTargetList.cpp291 if (FileSystem::Instance().IsDirectory(file)) in CreateTargetInternal()
HDTarget.cpp4541 bool is_directory = instance.IsDirectory(new_dir); in CheckJITObjectsDir()
/freebsd-head/contrib/llvm-project/lldb/source/Commands/
HDCommandCompletions.cpp454 is_dir = fs.IsDirectory(symlink_filespec); in DiskFilesOrDirectories()
/freebsd-head/contrib/llvm-project/lldb/source/Core/
HDModuleList.cpp881 if (!FileSystem::Instance().IsDirectory(search_path_spec)) in GetSharedModule()
HDModule.cpp1368 if (FileSystem::Instance().IsDirectory(file)) { in SetSymbolFileFileSpec()
HDIOHandlerCursesGUI.cpp1368 if (FileSystem::Instance().IsDirectory(file)) { in FieldDelegateExitCallback()
1411 if (!FileSystem::Instance().IsDirectory(file)) { in FieldDelegateExitCallback()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDSymbolFileDWARF.cpp1894 if (!FileSystem::Instance().IsDirectory(dirspec)) in GetDwoSymbolFileForCompileUnit()
1944 if (!FileSystem::Instance().IsDirectory(dirspec)) in GetDwoSymbolFileForCompileUnit()
/freebsd-head/contrib/llvm-project/clang/lib/Sema/
HDSemaCodeComplete.cpp10177 auto AddCompletion = [&](StringRef Filename, bool IsDirectory) { in CodeCompleteIncludedFile() argument
10180 TypedChunk.push_back(IsDirectory ? '/' : Angled ? '>' : '"'); in CodeCompleteIncludedFile()

12