|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/Support/FileSystem.h 366 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
References
lib/Support/FileCollector.cpp 21 if (!sys::fs::real_path(Path, TmpDest))
30 if (sys::fs::real_path(UpperDest, RealDest) && Path.equals(RealDest))
51 auto EC = sys::fs::real_path(Directory, RealPath);
lib/Support/Unix/Path.inc 1081 return real_path(Storage, dest, false);
lib/Support/VirtualFileSystem.cpp 248 if (llvm::sys::fs::real_path(PWD, RealPWD))
328 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved))
343 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output);
lib/Transforms/Instrumentation/GCOVProfiling.cpp 499 if (sys::fs::real_path(Filename, RealPath)) {
tools/clang/lib/Driver/ToolChains/Cuda.cpp 105 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath);
tools/clang/lib/Frontend/ModuleDependencyCollector.cpp 115 if (llvm::sys::fs::real_path(Path, TmpDest))
125 if (!llvm::sys::fs::real_path(UpperDest, RealDest) && Path.equals(RealDest))
171 if (llvm::sys::fs::real_path(Dir, RealPath))
tools/dsymutil/DeclContext.h 42 sys::fs::real_path(ParentPath, RealPath);
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp 990 if (!llvm::sys::fs::real_path(dll_specs.GetPath(), dll_fullpath))
tools/lldb/source/Utility/TildeExpressionResolver.cpp 39 return !fs::real_path(Expr, Output, true);
unittests/Support/FileCollectorTest.cpp 56 if (!llvm::sys::fs::real_path(Path, RealPath))
unittests/Support/Path.cpp 520 ASSERT_NO_ERROR(fs::real_path(TestDirectory, RealBase));
523 ASSERT_NO_ERROR(fs::real_path(
533 ASSERT_NO_ERROR(fs::real_path(HomeDir, Expected));
534 ASSERT_NO_ERROR(fs::real_path("~", Actual, true));
536 ASSERT_NO_ERROR(fs::real_path("~/", Actual, true));
579 ASSERT_NO_ERROR(fs::real_path(Twine(TestDirectory) + "/noreadperm", Expanded,
unittests/Support/VirtualFileSystemTest.cpp 423 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);