Searched refs:RPath (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DModuleDependencyCollector.h32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {}
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp129 sys::fs::create_directories(sys::path::parent_path(entry.RPath),
146 sys::fs::create_directories(entry.RPath,
155 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) {
162 if (std::error_code EC = sys::fs::setPermissions(entry.RPath, *perms)) {
169 copyAccessAndModificationTime(entry.RPath, Stat);
H A DVirtualFileSystem.cpp1916 void writeEntry(StringRef VPath, StringRef RPath);
1967 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { argument
1973 << llvm::yaml::escape(RPath) << "\"\n";
2004 StringRef RPath = Entry.RPath; local
2007 assert(RPath.substr(0, OverlayDirLen) == OverlayDir &&
2008 "Overlay dir must be contained in RPath");
2009 RPath = RPath.slice(OverlayDirLen, RPath
2012 writeEntry(path::filename(Entry.VPath), RPath); local
2026 StringRef RPath = Entry.RPath; local
2033 writeEntry(path::filename(Entry.VPath), RPath); local
[all...]
/freebsd-12-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-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.cpp211 for (StringRef RPath : Config.RPathToAdd) {
214 RPath == StringRef(reinterpret_cast<char *>(LC.Payload.data()),
218 "rpath " + RPath +
222 Obj.addLoadCommand(buildRPathLoadCommand(RPath));
/freebsd-12-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)) {}
512 std::string RPath; member in struct:llvm::vfs::YAMLVFSEntry
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp214 MDC->addFile(E.VPath, E.RPath);

Completed in 116 milliseconds