Searched refs:RealPath (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h78 void addFileToMapping(StringRef VirtualPath, StringRef RealPath) { argument
80 VFSWriter.addDirectoryMapping(VirtualPath, RealPath);
82 VFSWriter.addFileMapping(VirtualPath, RealPath);
107 /// Caches RealPath calls when resolving symlinks.
H A DVirtualFileSystem.h776 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
781 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
782 void addDirectoryMapping(StringRef VirtualPath, StringRef RealPath);
H A DFileSystem.h1109 /// @param RealPath If nonnull, extra work is done to determine the real path
1116 SmallVectorImpl<char> *RealPath = nullptr);
1125 /// @param RealPath If nonnull, extra work is done to determine the real path
1132 SmallVectorImpl<char> *RealPath = nullptr);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp162 SmallString<256> RealPath;
171 if (llvm::sys::fs::real_path(Dir, RealPath))
173 SymLinkMap[Dir] = std::string(RealPath.str());
175 RealPath = DirWithSymLink->second;
178 path::append(RealPath, FileName);
179 Result.swap(RealPath);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h41 SmallString<256> RealPath; local
42 sys::fs::real_path(ParentPath, RealPath);
43 ResolvedPaths.insert({ParentPath, StringRef(RealPath).str()});
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp42 SmallString<256> RealPath; local
51 auto EC = sys::fs::real_path(Directory, RealPath);
54 SymlinkMap[Directory] = std::string(RealPath.str());
56 RealPath = DirWithSymlink->second;
59 sys::path::append(RealPath, FileName);
60 Result.swap(RealPath);
H A DVirtualFileSystem.cpp1915 void YAMLVFSWriter::addEntry(StringRef VirtualPath, StringRef RealPath, argument
1918 assert(sys::path::is_absolute(RealPath) && "real path not absolute");
1920 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory);
1923 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { argument
1924 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false);
1928 StringRef RealPath) {
1929 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true);
1927 addDirectoryMapping(StringRef VirtualPath, StringRef RealPath) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp179 std::string RealPath;
185 RealPath = Buffer;
187 RealPath = Path.str();
192 Context.info = new EventStreamContextData(std::move(RealPath), Receiver);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp481 SmallString<256> RealPath;
487 if (sys::fs::real_path(Filename, RealPath)) {
491 RealFilename = RealPath;

Completed in 427 milliseconds