Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.cpp170 if (IsDirectory(Dir)) { in MkDirRecursiveInner()
172 return IsDirectory(Leaf); in MkDirRecursiveInner()
182 return IsDirectory(Leaf); in MkDirRecursiveInner()
189 if (IsDirectory(Dir)) in MkDirRecursive()
H A DFuzzerIOPosix.cpp34 bool IsDirectory(const std::string &Path) { in IsDirectory() function
72 (E->d_type == DT_UNKNOWN && IsDirectory(Path))) && in ListFilesInDirRecursive()
95 (E->d_type == DT_UNKNOWN && IsDirectory(Path))) && in IterateDirRecursive()
H A DFuzzerIO.h65 bool IsDirectory(const std::string &Path);
H A DFuzzerIOWindows.cpp79 bool IsDirectory(const std::string &Path) { in IsDirectory() function
H A DFuzzerDriver.cpp260 if (IsDirectory(Path)) in ValidateDirectoryExists()
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc298 bool FilePath::IsDirectory() const { in IsDirectory() function in testing::internal::FilePath
307 if (!this->IsDirectory()) { in CreateDirectoriesRecursively()
345 return IsDirectory() in RemoveTrailingPathSeparator()
H A Dgtest.cc495 if (!output_name.IsDirectory()) in GetAbsolutePathToOutputFile()
/freebsd-13.1/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc607 TEST(FilePathTest, IsDirectory) { in TEST() argument
608 EXPECT_FALSE(FilePath("cola").IsDirectory()); in TEST()
609 EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).IsDirectory()); in TEST()
611 EXPECT_TRUE(FilePath("koala/").IsDirectory()); in TEST()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileSystem.h123 bool IsDirectory(const FileSpec &file_spec) const;
124 bool IsDirectory(const llvm::Twine &path) const;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h511 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
513 IsDirectory(IsDirectory) {} in VPath()
516 bool IsDirectory = false; member
879 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h166 bool IsDirectory() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp182 bool FileSystem::IsDirectory(const Twine &path) const { in IsDirectory() function in FileSystem
189 bool FileSystem::IsDirectory(const FileSpec &file_spec) const { in IsDirectory() function in FileSystem
190 return file_spec && IsDirectory(file_spec.GetPath()); in IsDirectory()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp30 if (FileSystem::Instance().IsDirectory(clang_path)) in VerifyClangPath()
H A DClangModulesDeclVendor.cpp643 if (FileSystem::Instance().IsDirectory(clang_resource_dir.GetPath())) { in Create()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp323 if (!FileSystem::Instance().IsDirectory(dirspec)) in LocateExecutableSymbolFile()
H A DLocateSymbolFileMacOSX.cpp122 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateMacOSXFilesUsingDebugSymbols()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2151 bool IsDirectory) { in addEntry() argument
2155 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); in addEntry()
2267 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath) in write()
2279 if (!Entry.IsDirectory) { in write()
2286 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath); in write()
2311 if (!Entry.IsDirectory) { in write()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp329 if (FileSystem::Instance().IsDirectory(file)) in CreateTargetInternal()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp549 if (FileSystem::Instance().IsDirectory(src.ref())) in Put()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp430 is_dir = fs.IsDirectory(symlink_filespec); in DiskFilesOrDirectories()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp838 if (!FileSystem::Instance().IsDirectory(search_path_spec)) in GetSharedModule()
H A DModule.cpp1425 if (FileSystem::Instance().IsDirectory(file)) { in SetSymbolFileFileSpec()
H A DIOHandlerCursesGUI.cpp1311 if (FileSystem::Instance().IsDirectory(file)) { in FieldDelegateExitCallback()
1354 if (!FileSystem::Instance().IsDirectory(file)) { in FieldDelegateExitCallback()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp9428 auto AddCompletion = [&](StringRef Filename, bool IsDirectory) { in CodeCompleteIncludedFile() argument
9431 TypedChunk.push_back(IsDirectory ? '/' : Angled ? '>' : '"'); in CodeCompleteIncludedFile()