Searched refs:VPath (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DModuleDependencyCollector.h32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {}
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DUtils.h168 virtual void addFileMapping(StringRef VPath, StringRef RPath) { argument
169 VFSWriter.addFileMapping(VPath, RPath);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp137 if (std::error_code EC = sys::fs::status(entry.VPath, Stat)) {
155 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) {
161 if (auto perms = sys::fs::getPermissions(entry.VPath)) {
H A DVirtualFileSystem.cpp1866 SmallString<128> VPath; local
1868 llvm::sys::path::append(VPath, Comp);
1869 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath()));
1916 void writeEntry(StringRef VPath, StringRef RPath);
1967 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { argument
1971 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n";
2002 startDirectory(path::parent_path(Entry.VPath));
2012 writeEntry(path::filename(Entry.VPath), RPath);
2015 StringRef Dir = path::parent_path(Entry.VPath);
2033 writeEntry(path::filename(Entry.VPath), RPat
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h509 YAMLVFSEntry(T1 &&VPath, T2 &&RPath) argument
510 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)) {}
511 std::string VPath; member in struct:llvm::vfs::YAMLVFSEntry
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp214 MDC->addFile(E.VPath, E.RPath);

Completed in 210 milliseconds