Searched refs:VPath (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | FileCollector.cpp | 189 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 D | VirtualFileSystem.cpp | 2679 SmallString<128> VPath; in getVFSEntries() local 2681 llvm::sys::path::append(VPath, Comp); in getVFSEntries() 2683 YAMLVFSEntry(VPath.c_str(), DR->getExternalContentsPath())); in getVFSEntries() 2690 SmallString<128> VPath; in getVFSEntries() local 2692 llvm::sys::path::append(VPath, Comp); in getVFSEntries() 2693 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath())); in getVFSEntries() 2753 void writeEntry(StringRef VPath, StringRef RPath); 2805 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 2809 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n"; in writeEntry() 2842 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath) in write() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ModuleDependencyCollector.h | 32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {} in addFileMapping() argument
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | VirtualFileSystem.h | 653 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false) 654 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath() function 656 std::string VPath; member
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | CompilerInstance.cpp | 279 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|