Home
last modified time | relevance | path

Searched refs:IsDir (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp74 static bool IsDir(DWORD FileAttrs) { in IsDir() function
88 return IsDir(Att); in IsDirectory()
170 if (!IsDir(DirAttrs)) return; in IterateDirRecursive()
193 if (IsDir(PathAttrs)) { in IterateDirRecursive()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc287 posix::Stat(path.c_str(), &file_stat) == 0 && posix::IsDir(file_stat); in DirectoryExists()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp979 bool IsDir; in run() local
980 sys::fs::is_directory(SavedObjectsDirectoryPath, IsDir); in run()
981 if (!IsDir) in run()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp231 auto IsDir = FileName.ends_with(sys::path::get_separator()); in render() local
233 if (IsDir) in render()
H A DSourceCoverageViewHTML.cpp841 auto IsDir = LinkTextStr.ends_with(sys::path::get_separator()); in buildRelLinkToFile() local
845 if (IsDir) { in buildRelLinkToFile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp474 bool IsDir = false; in parseCommandLine() local
479 sys::fs::is_directory(OutputDir, IsDir); in parseCommandLine()
480 if (!IsDir) in parseCommandLine()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2046 inline bool IsDir(const StatStruct& st) { return (_S_IFDIR & st.st_mode) != 0; }
2060 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
2076 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp354 bool IsDir; in setCurrentWorkingDirectory() local
355 if (auto Err = llvm::sys::fs::is_directory(Absolute, IsDir)) in setCurrentWorkingDirectory()
357 if (!IsDir) in setCurrentWorkingDirectory()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp5361 bool IsDir; in findDsymObjectMembers() local
5362 auto EC = sys::fs::is_directory(BundlePath, IsDir); in findDsymObjectMembers()
5363 if (EC == errc::no_such_file_or_directory || (!EC && !IsDir)) in findDsymObjectMembers()