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

Overridden By

include/llvm/Support/VirtualFileSystem.h
  390   std::error_code getRealPath(const Twine &Path,
lib/Support/FileCollector.cpp
  234   std::error_code getRealPath(const Twine &Path,
lib/Support/VirtualFileSystem.cpp
  340 RealFileSystem::getRealPath(const Twine &Path,
  443 OverlayFileSystem::getRealPath(const Twine &Path,
  968 InMemoryFileSystem::getRealPath(const Twine &Path,
 1794 RedirectingFileSystem::getRealPath(const Twine &Path,
tools/lldb/unittests/Host/FileSystemTest.cpp
   71   std::error_code getRealPath(const Twine &Path,
unittests/Support/VirtualFileSystemTest.cpp
   77   std::error_code getRealPath(const Twine &Path,

Declarations

include/llvm/Support/VirtualFileSystem.h
  276   virtual std::error_code getRealPath(const Twine &Path,

References

include/llvm/Support/VirtualFileSystem.h
  392     return FS->getRealPath(Path, Output);
lib/Support/FileCollector.cpp
  236     auto EC = FS->getRealPath(Path, Output);
lib/Support/VirtualFileSystem.cpp
  447       return FS->getRealPath(Path, Output);
 1800       return ExternalFS->getRealPath(Path, Output);
 1807     return ExternalFS->getRealPath(F->getExternalContentsPath(), Output);
 1811   return shouldUseExternalFS() ? ExternalFS->getRealPath(Path, Output)
tools/clang/lib/Basic/FileManager.cpp
  556   if (!FS->getRealPath(Dir->getName(), CanonicalNameBuf))
tools/lldb/source/Host/common/FileSystem.cpp
  238   return m_fs->getRealPath(path, output);
unittests/Support/FileCollectorTest.cpp
  295   VFS->getRealPath(symlink.Path, Output);
unittests/Support/VirtualFileSystemTest.cpp
  542   ASSERT_FALSE(BFS->getRealPath("bb", BPath));
  546   ASSERT_FALSE(CFS->getRealPath("aa", APath));
 1999   EXPECT_FALSE(FS->getRealPath("/foo", RealPath));
 2003   EXPECT_FALSE(FS->getRealPath("//root/bar", RealPath));
 2007   EXPECT_FALSE(FS->getRealPath("//dir/", RealPath));
 2011   EXPECT_EQ(FS->getRealPath("/non_existing", RealPath),