Home
last modified time | relevance | path

Searched refs:VPath (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp189 if (std::error_code EC = sys::fs::status(entry.VPath, Stat)) { in copyFiles()
219 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles()
225 if (auto perms = sys::fs::getPermissions(entry.VPath)) { in copyFiles()
H A DVirtualFileSystem.cpp2692 SmallString<128> VPath; in getVFSEntries() local
2694 llvm::sys::path::append(VPath, Comp); in getVFSEntries()
2696 YAMLVFSEntry(VPath.c_str(), DR->getExternalContentsPath())); in getVFSEntries()
2703 SmallString<128> VPath; in getVFSEntries() local
2705 llvm::sys::path::append(VPath, Comp); in getVFSEntries()
2706 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath())); in getVFSEntries()
2766 void writeEntry(StringRef VPath, StringRef RPath);
2818 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument
2822 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n"; in writeEntry()
2855 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath) in write()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DModuleDependencyCollector.h32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {} in addFileMapping() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h671 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
672 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath() function
674 std::string VPath; member
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp278 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()