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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h57 void addFileToMapping(StringRef VirtualPath, StringRef RealPath) { argument
58 VFSWriter.addFileMapping(VirtualPath, RealPath);
77 /// Caches RealPath calls when resolving symlinks.
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);
H A DVirtualFileSystem.h787 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
/freebsd-12-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] = RealPath.str();
175 RealPath = DirWithSymLink->second;
178 path::append(RealPath, FileName);
179 Result.swap(RealPath);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h40 SmallString<256> RealPath; local
41 sys::fs::real_path(ParentPath, RealPath);
42 ResolvedPaths.insert({ParentPath, StringRef(RealPath).str()});
/freebsd-12-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] = RealPath.str();
56 RealPath = DirWithSymlink->second;
59 sys::path::append(RealPath, FileName);
60 Result.swap(RealPath);
H A DVirtualFileSystem.cpp1897 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { argument
1899 assert(sys::path::is_absolute(RealPath) && "real path not absolute");
1901 Mappings.emplace_back(VirtualPath, RealPath);
/freebsd-12-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp168 std::string RealPath;
174 RealPath = Buffer;
176 RealPath = Path;
181 Context.info = new EventStreamContextData(std::move(RealPath), Receiver);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp495 SmallString<256> RealPath;
501 if (sys::fs::real_path(Filename, RealPath)) {
505 RealFilename = RealPath;

Completed in 262 milliseconds