Home
last modified time | relevance | path

Searched refs:getRealPath (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DVirtualFileSystem.h300 virtual std::error_code getRealPath(const Twine &Path,
387 std::error_code getRealPath(const Twine &Path,
445 std::error_code getRealPath(const Twine &Path, in getRealPath() function
447 return FS->getRealPath(Path, Output); in getRealPath()
601 std::error_code getRealPath(const Twine &Path,
974 std::error_code getRealPath(const Twine &Path,
/llvm-project-15.0.7/llvm/lib/Support/
H A DFileCollector.cpp281 std::error_code getRealPath(const Twine &Path, in getRealPath() function in llvm::FileCollectorFileSystem
283 auto EC = FS->getRealPath(Path, Output); in getRealPath()
H A DVirtualFileSystem.cpp140 std::error_code FileSystem::getRealPath(const Twine &Path, in getRealPath() function in FileSystem
277 std::error_code getRealPath(const Twine &Path,
359 RealFileSystem::getRealPath(const Twine &Path, in getRealPath() function in RealFileSystem
473 OverlayFileSystem::getRealPath(const Twine &Path, in getRealPath() function in OverlayFileSystem
477 return FS->getRealPath(Path, Output); in getRealPath()
1156 InMemoryFileSystem::getRealPath(const Twine &Path, in getRealPath() function in llvm::vfs::InMemoryFileSystem
2449 RedirectingFileSystem::getRealPath(const Twine &OriginalPath, in getRealPath() function in RedirectingFileSystem
2472 return ExternalFS->getRealPath(CanonicalPath, Output); in getRealPath()
2479 auto P = ExternalFS->getRealPath(*ExtRedirect, Output); in getRealPath()
2485 return ExternalFS->getRealPath(CanonicalPath, Output); in getRealPath()
[all …]
/llvm-project-15.0.7/llvm/unittests/Support/
H A DVirtualFileSystemTest.cpp81 std::error_code getRealPath(const Twine &Path, in getRealPath() function in __anon6124b8b40111::DummyFileSystem
279 EXPECT_FALSE(O->getRealPath("/foo", RealPath)); in TEST()
283 EXPECT_FALSE(O->getRealPath("/lower_link", RealPath)); in TEST()
287 EXPECT_EQ(O->getRealPath("/upper_link", RealPath), in TEST()
292 EXPECT_FALSE(O->getRealPath("/upper_link", RealPath)); in TEST()
502 ASSERT_FALSE(BFS->getRealPath("bb", BPath)); in TEST()
506 ASSERT_FALSE(CFS->getRealPath("aa", APath)); in TEST()
929 ASSERT_FALSE(PFS.getRealPath("a", Path)); in TEST()
1097 auto EC = FS.getRealPath(P, Output); in TEST_F()
2509 EXPECT_FALSE(FS->getRealPath("/foo", RealPath)); in TEST_F()
[all …]
H A DFileCollectorTest.cpp273 VFS->getRealPath(symlink.path(), Output); in TEST()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHeaders.h145 StringRef getRealPath(HeaderID ID) const { in getRealPath() function
H A DIncludeCleaner.cpp278 AST.getIncludeStructure().getRealPath(HID)); in mayConsiderUnused()
H A DCodeComplete.cpp1489 ProxSources[Includes.getRealPath(HeaderIDAndDepth.getFirst())]; in run()
/llvm-project-15.0.7/clang/lib/Basic/
H A DFileManager.cpp668 if (!FS->getRealPath(Dir->getName(), CanonicalNameBuf)) in getCanonicalName()
684 if (!FS->getRealPath(File->getName(), CanonicalNameBuf)) in getCanonicalName()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DStdLib.cpp320 if (!HS.getFileMgr().getVirtualFileSystem().getRealPath(DirPath, Path)) in add()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DIncludeCleanerTests.cpp434 ReferencedHeaderNames.push_back(Includes.getRealPath(HID)); in TEST()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DFileSystemTest.cpp71 std::error_code getRealPath(const Twine &Path, in getRealPath() function in __anonef9ab2f10111::DummyFileSystem
/llvm-project-15.0.7/lldb/source/Host/common/
H A DFileSystem.cpp232 return m_fs->getRealPath(path, output); in GetRealPath()