Searched refs:IsDir (Results 1 – 9 of 9) sorted by relevance
74 static bool IsDir(DWORD FileAttrs) { in IsDir() function88 return IsDir(Att); in IsDirectory()170 if (!IsDir(DirAttrs)) return; in IterateDirRecursive()193 if (IsDir(PathAttrs)) { in IterateDirRecursive()
287 posix::Stat(path.c_str(), &file_stat) == 0 && posix::IsDir(file_stat); in DirectoryExists()
979 bool IsDir; in run() local980 sys::fs::is_directory(SavedObjectsDirectoryPath, IsDir); in run()981 if (!IsDir) in run()
231 auto IsDir = FileName.ends_with(sys::path::get_separator()); in render() local233 if (IsDir) in render()
841 auto IsDir = LinkTextStr.ends_with(sys::path::get_separator()); in buildRelLinkToFile() local845 if (IsDir) { in buildRelLinkToFile()
474 bool IsDir = false; in parseCommandLine() local479 sys::fs::is_directory(OutputDir, IsDir); in parseCommandLine()480 if (!IsDir) in parseCommandLine()
2046 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); }
354 bool IsDir; in setCurrentWorkingDirectory() local355 if (auto Err = llvm::sys::fs::is_directory(Absolute, IsDir)) in setCurrentWorkingDirectory()357 if (!IsDir) in setCurrentWorkingDirectory()
5361 bool IsDir; in findDsymObjectMembers() local5362 auto EC = sys::fs::is_directory(BundlePath, IsDir); in findDsymObjectMembers()5363 if (EC == errc::no_such_file_or_directory || (!EC && !IsDir)) in findDsymObjectMembers()