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()
968 bool IsDir; in run() local969 sys::fs::is_directory(SavedObjectsDirectoryPath, IsDir); in run()970 if (!IsDir) in run()
231 auto IsDir = FileName.ends_with(sys::path::get_separator()); in render() local233 if (IsDir) in render()
836 auto IsDir = LinkTextStr.ends_with(sys::path::get_separator()); in buildRelLinkToFile() local840 if (IsDir) { in buildRelLinkToFile()
2014 inline bool IsDir(const StatStruct& st) { return (_S_IFDIR & st.st_mode) != 0; }2028 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }2044 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
474 bool IsDir = false; in parseCommandLine() local479 sys::fs::is_directory(OutputDir, IsDir); in parseCommandLine()480 if (!IsDir) in parseCommandLine()
366 bool IsDir; in setCurrentWorkingDirectory() local367 if (auto Err = llvm::sys::fs::is_directory(Absolute, IsDir)) in setCurrentWorkingDirectory()369 if (!IsDir) in setCurrentWorkingDirectory()
5355 bool IsDir; in findDsymObjectMembers() local5356 auto EC = sys::fs::is_directory(BundlePath, IsDir); in findDsymObjectMembers()5357 if (EC == errc::no_such_file_or_directory || (!EC && !IsDir)) in findDsymObjectMembers()