| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 173 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 174 if (RPathsToRemove.count(RPath)) { in processLoadCommands() 175 RPathsToRemove.erase(RPath); in processLoadCommands() 188 if (RPathsToRemove.count(RPath)) in processLoadCommands() 225 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 247 for (StringRef RPath : MachOConfig.RPathToAdd) { in processLoadCommands() local 248 if (RPaths.contains(RPath)) in processLoadCommands() 250 "rpath '" + RPath + in processLoadCommands() 252 RPaths.insert(RPath); in processLoadCommands() 257 if (RPaths.contains(RPath)) in processLoadCommands() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FileCollector.cpp | 201 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()
|
| H A D | VirtualFileSystem.cpp | 2672 void writeEntry(StringRef VPath, StringRef RPath); 2724 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 2730 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry() 2764 StringRef RPath = Entry.RPath; in write() local 2767 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write() 2769 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write() 2774 writeEntry(path::filename(Entry.VPath), RPath); in write() 2798 StringRef RPath = Entry.RPath; in write() local 2801 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write() 2803 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | Utils.h | 154 virtual void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument 155 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 1064 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local 1067 if (is_contained(MachOConfig.RPathToAdd, RPath)) in parseInstallNameToolOptions() 1071 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1072 if (is_contained(MachOConfig.RPathToPrepend, RPath)) in parseInstallNameToolOptions() 1076 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1078 MachOConfig.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions() 1085 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | InterfaceFile.cpp | 56 void InterfaceFile::addRPath(const Target &InputTarget, StringRef RPath) { in addRPath() argument 57 if (RPath.empty()) in addRPath() 60 RPathEntryT Entry(InputTarget, RPath); in addRPath()
|
| H A D | TextStubV5.cpp | 120 RPath, enumerator 632 auto RPathsOrErr = getLibSection(File, TBDKey::RPath, TBDKey::Paths, Targets); in parseToInterfaceFile() 967 insertNonEmptyValues(Library, TBDKey::RPath, std::move(RPaths)); in serializeIF()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | VirtualFileSystem.h | 626 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
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | InterfaceFile.h | 341 void addRPath(const Target &InputTarget, StringRef RPath);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 279 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|