| /src/external/bsd/zstd/dist/contrib/pzstd/utils/ |
| FileSystem.h | 49 /// https://en.cppreference.com/w/cpp/filesystem/is_regular_file 50 inline bool is_regular_file(file_status status) noexcept { 60 /// https://en.cppreference.com/w/cpp/filesystem/is_regular_file 61 inline bool is_regular_file(StringPiece path, std::error_code& ec) noexcept { 62 return is_regular_file(status(path, ec)); 89 if (!is_regular_file(stat)) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Testing/Support/ |
| SupportHelpers.cpp | 24 if (llvm::sys::fs::is_regular_file(PathInSameDir)) 30 if (llvm::sys::fs::is_regular_file(PathInParentDir))
|
| /src/external/gpl3/gcc/dist/gcc/config/vms/ |
| vms-ar.c | 53 static int is_regular_file (char *name); 89 is_regular_file (char *name) function 217 if (is_regular_file (lname)) 234 if (is_regular_file (nlibname)) 255 if (!is_regular_file (libname) || !replace_mode)
|
| vms-ld.c | 84 static int is_regular_file (char *); 128 is_regular_file (char *name) 220 if (is_regular_file (buf)) 127 is_regular_file (char *name) function
|
| /src/external/gpl3/gcc.old/dist/gcc/config/vms/ |
| vms-ar.c | 53 static int is_regular_file (char *name); 89 is_regular_file (char *name) function 217 if (is_regular_file (lname)) 234 if (is_regular_file (nlibname)) 255 if (!is_regular_file (libname) || !replace_mode)
|
| vms-ld.c | 84 static int is_regular_file (char *); 128 is_regular_file (char *name) 220 if (is_regular_file (buf)) 127 is_regular_file (char *name) function
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| filestuff.h | 120 extern bool is_regular_file (const char *name, int *errno_ptr);
|
| filestuff.cc | 434 is_regular_file (const char *name, int *errno_ptr) 430 is_regular_file (const char *name, int *errno_ptr) function
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| filestuff.h | 120 extern bool is_regular_file (const char *name, int *errno_ptr);
|
| filestuff.cc | 434 is_regular_file (const char *name, int *errno_ptr) 430 is_regular_file (const char *name, int *errno_ptr) function
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| fs_ops.h | 231 return exists(__s) && !is_regular_file(__s) && !is_directory(__s) 247 is_regular_file(file_status __s) noexcept 252 is_regular_file(const path& __p) function in namespace:filesystem 253 { return is_regular_file(status(__p)); } 257 is_regular_file(const path& __p, error_code& __ec) noexcept 258 { return is_regular_file(status(__p, __ec)); }
|
| fs_dir.h | 222 is_regular_file() const function in class:filesystem::directory_entry 226 is_regular_file(error_code& __ec) const noexcept
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
| fs_ops.h | 238 return exists(__s) && !is_regular_file(__s) && !is_directory(__s) 254 is_regular_file(file_status __s) noexcept 259 is_regular_file(const path& __p) function in namespace:experimental::filesystem::v1 260 { return is_regular_file(status(__p)); } 264 is_regular_file(const path& __p, error_code& __ec) noexcept 265 { return is_regular_file(status(__p, __ec)); }
|
| fs_fwd.h | 307 bool is_regular_file(file_status) noexcept;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| fs_ops.h | 231 return exists(__s) && !is_regular_file(__s) && !is_directory(__s) 247 is_regular_file(file_status __s) noexcept 252 is_regular_file(const path& __p) function in namespace:filesystem 253 { return is_regular_file(status(__p)); } 257 is_regular_file(const path& __p, error_code& __ec) noexcept 258 { return is_regular_file(status(__p, __ec)); }
|
| fs_dir.h | 222 is_regular_file() const function in class:filesystem::directory_entry 226 is_regular_file(error_code& __ec) const noexcept
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/ |
| fs_ops.h | 238 return exists(__s) && !is_regular_file(__s) && !is_directory(__s) 254 is_regular_file(file_status __s) noexcept 259 is_regular_file(const path& __p) function in namespace:experimental::filesystem::v1 260 { return is_regular_file(status(__p)); } 264 is_regular_file(const path& __p, error_code& __ec) noexcept 265 { return is_regular_file(status(__p, __ec)); }
|
| fs_fwd.h | 295 bool is_regular_file(file_status) noexcept;
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/ |
| ops-common.h | 485 if (!is_regular_file(f)) 493 if (!is_regular_file(t)) 523 else if (!is_regular_file(t))
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/ |
| ops-common.h | 420 if (!is_regular_file(f)) 428 if (!is_regular_file(t)) 459 else if (!is_regular_file(t))
|
| std-ops.cc | 317 if (!is_regular_file(f)) 325 if (!is_regular_file(t)) 356 else if (!is_regular_file(t)) 514 if (is_directory(f) && is_regular_file(t)) 531 else if (is_regular_file(f))
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ |
| Compilation.cpp | 121 // duplicated stat from is_regular_file. 126 if (!llvm::sys::fs::can_write(File) || !llvm::sys::fs::is_regular_file(File))
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| FileSystem.h | 571 bool is_regular_file(const basic_file_status &status); 580 std::error_code is_regular_file(const Twine &path, bool &result); 582 /// Simpler version of is_regular_file for clients that don't need to 584 inline bool is_regular_file(const Twine &Path) { function in namespace:llvm::sys::fs 586 if (is_regular_file(Path, Result)) 619 /// @returns exists(s) && !is_regular_file(s) && !is_directory(s)
|
| /src/external/apache2/llvm/dist/libcxx/src/filesystem/ |
| operations.cpp | 752 (is_directory(f) && is_regular_file(t)) || 769 } else if (is_regular_file(f)) { 907 if (!is_regular_file(from_st)) { 924 if (to_exists && !is_regular_file(to_st)) 1147 if (!exists(fst) || !is_regular_file(fst)) { 1154 // is_regular_file(p) == true 1177 else if (!is_directory(st) && !is_regular_file(st)) 1184 } else if (is_regular_file(st)) 1973 if (_VSTD_FS::is_regular_file(st))
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Path.cpp | 1100 bool is_regular_file(const basic_file_status &status) { 1104 std::error_code is_regular_file(const Twine &path, bool &result) { 1108 result = is_regular_file(st); 1126 !is_regular_file(status) &&
|