reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/FileSystem.h
 1246     return S ? S->type() : file_type::type_unknown;
 1369           type = status->type();
lib/Object/ArchiveWriter.cpp
   91   if (Status.type() == sys::fs::file_type::directory_file)
lib/Support/FileCollector.cpp
  143     if (Stat.type() == sys::fs::file_type::directory_file) {
lib/Support/FileOutputBuffer.cpp
  186   switch (Stat.type()) {
lib/Support/MemoryBuffer.cpp
  384       sys::fs::file_type Type = Status.type();
  436       sys::fs::file_type Type = Status.type();
lib/Support/Path.cpp
 1026   return status_known(status) && status.type() != file_type::file_not_found;
 1030   return s.type() != file_type::status_error;
 1037   return st.type();
 1041   return status.type() == file_type::directory_file;
 1053   return status.type() == file_type::regular_file;
 1065   return status.type() == file_type::symlink_file;
lib/Support/VirtualFileSystem.cpp
   69       Type(Status.type()), Perms(Status.permissions()) {}
   85                 In.getUser(), In.getGroup(), In.getSize(), In.type(),
tools/clang/tools/extra/modularize/CoverageChecker.cpp
  254     sys::fs::file_type Type = Status->type();
  378     sys::fs::file_type type = Status->type();
tools/clang/tools/extra/modularize/ModularizeUtilities.cpp
  414     llvm::sys::fs::file_type Type = Status->type();
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
 2720     if (ec || st.type() == fs::file_type::status_error ||
 2721         st.type() == fs::file_type::type_unknown ||
 2722         st.type() == fs::file_type::file_not_found) {
tools/llvm-cov/CodeCoverage.cpp
  224       if (Status->type() == llvm::sys::fs::file_type::regular_file)
tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  550       switch (Status.type()) {
tools/llvm-objcopy/llvm-objcopy.cpp
  235   if (OStat.type() == sys::fs::file_type::regular_file)
unittests/Support/Path.cpp
  642   EXPECT_EQ(B.type(), fs::file_type::file_not_found);