Searched refs:VirtualPath (Results 1 - 5 of 5) 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);
H A DVirtualFileSystem.h787 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp196 SmallString<256> VirtualPath = AbsoluteSrc; local
197 path::remove_dots(VirtualPath, /*remove_dot_dot=*/true);
204 CopyFrom = VirtualPath;
232 addFileMapping(VirtualPath, CacheDst);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp83 SmallString<256> VirtualPath = AbsoluteSrc; local
84 sys::path::remove_dots(VirtualPath, /*remove_dot_dot=*/true);
91 CopyFrom = VirtualPath;
101 addFileToMapping(VirtualPath, DstPath);
H A DVirtualFileSystem.cpp1897 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { argument
1898 assert(sys::path::is_absolute(VirtualPath) && "virtual path not absolute");
1900 assert(!pathHasTraversal(VirtualPath) && "path traversal is not supported");
1901 Mappings.emplace_back(VirtualPath, RealPath);

Completed in 91 milliseconds