HomeSort by relevance Sort by last modified time
    Searched refs:is_regular_file (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/Support/
FileSystem.h 446 bool is_regular_file(file_status status);
455 std::error_code is_regular_file(const Twine &path, bool &result);
457 /// @brief Simpler version of is_regular_file for clients that don't need to
459 inline bool is_regular_file(const Twine &Path) { function in namespace:llvm::sys::fs
461 if (is_regular_file(Path, Result))
470 /// @returns exists(s) && !is_regular_file(s) && !is_directory(s)
  /external/v8/src/base/platform/
platform-posix.cc 339 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
340 if (is_regular_file) return file;
  /external/clang/lib/Driver/
Compilation.cpp 79 // duplicated stat from is_regular_file.
84 if (!llvm::sys::fs::can_write(File) || !llvm::sys::fs::is_regular_file(File))
  /external/llvm/lib/Support/
Path.cpp 865 bool is_regular_file(file_status status) {
869 std::error_code is_regular_file(const Twine &path, bool &result) {
873 result = is_regular_file(st);
879 !is_regular_file(status) &&
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 178 if (sys::fs::is_regular_file(Dylib)) {
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/v8/src/
d8.cc     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 633 if (!llvm::sys::fs::is_regular_file(Status))
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]

Completed in 218 milliseconds