Searched refs:RPath (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
| H A D | MachOObjcopy.cpp | 155 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 156 if (RPathsToRemove.count(RPath)) { in processLoadCommands() 157 RPathsToRemove.erase(RPath); in processLoadCommands() 169 for (StringRef RPath : Config.RPathsToRemove) { in processLoadCommands() local 170 if (RPathsToRemove.count(RPath)) in processLoadCommands() 207 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 229 for (StringRef RPath : Config.RPathToAdd) { in processLoadCommands() local 230 if (RPaths.contains(RPath)) in processLoadCommands() 234 RPaths.insert(RPath); in processLoadCommands() 239 if (RPaths.contains(RPath)) in processLoadCommands() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FileCollector.cpp | 199 sys::fs::create_directories(sys::path::parent_path(entry.RPath), in copyFiles() 208 sys::fs::create_directories(entry.RPath, in copyFiles() 217 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles() 224 if (std::error_code EC = sys::fs::setPermissions(entry.RPath, *perms)) { in copyFiles() 231 copyAccessAndModificationTime(entry.RPath, Stat); in copyFiles()
|
| H A D | VirtualFileSystem.cpp | 2179 void writeEntry(StringRef VPath, StringRef RPath); 2230 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 2236 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry() 2270 StringRef RPath = Entry.RPath; in write() local 2273 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write() 2275 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write() 2280 writeEntry(path::filename(Entry.VPath), RPath); in write() 2304 StringRef RPath = Entry.RPath; in write() local 2307 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write() 2309 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | Utils.h | 168 virtual void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument 169 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | ConfigManager.cpp | 1096 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local 1099 if (is_contained(Config.RPathToAdd, RPath)) in parseInstallNameToolOptions() 1103 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1104 if (is_contained(Config.RPathToPrepend, RPath)) in parseInstallNameToolOptions() 1108 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1110 Config.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions() 1117 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | VirtualFileSystem.h | 511 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false) 512 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath() 515 std::string RPath; member
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 274 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|