Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Support/
DFileCollector.cpp201 sys::fs::create_directories(sys::path::parent_path(entry.RPath), in copyFiles()
210 sys::fs::create_directories(entry.RPath, in copyFiles()
219 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles()
226 if (std::error_code EC = sys::fs::setPermissions(entry.RPath, *perms)) { in copyFiles()
233 copyAccessAndModificationTime(entry.RPath, Stat); in copyFiles()
DVirtualFileSystem.cpp2654 void writeEntry(StringRef VPath, StringRef RPath);
2706 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument
2712 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry()
2746 StringRef RPath = Entry.RPath; in write() local
2749 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write()
2751 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write()
2756 writeEntry(path::filename(Entry.VPath), RPath); in write()
2780 StringRef RPath = Entry.RPath; in write() local
2783 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write()
2785 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write()
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/Frontend/
DUtils.h152 virtual void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument
153 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
DModuleDependencyCollector.h32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {} in addFileMapping() argument
/openbsd/src/gnu/llvm/llvm/tools/llvm-objcopy/
DObjcopyOptions.cpp1066 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local
1069 if (is_contained(MachOConfig.RPathToAdd, RPath)) in parseInstallNameToolOptions()
1073 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions()
1074 if (is_contained(MachOConfig.RPathToPrepend, RPath)) in parseInstallNameToolOptions()
1078 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions()
1080 MachOConfig.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions()
1087 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
DVirtualFileSystem.h626 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
627 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath()
630 std::string RPath; member
/openbsd/src/gnu/llvm/clang/lib/Frontend/
DCompilerInstance.cpp281 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()