| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 192 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 193 if (RPathsToRemove.count(RPath)) { in processLoadCommands() 194 RPathsToRemove.erase(RPath); in processLoadCommands() 206 for (StringRef RPath : MachOConfig.RPathsToRemove) { in processLoadCommands() local 207 if (RPathsToRemove.count(RPath)) in processLoadCommands() 210 RPath.str().c_str()); in processLoadCommands() 244 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 245 StringRef NewRPath = MachOConfig.RPathsToUpdate.lookup(RPath); in processLoadCommands() 266 for (StringRef RPath : MachOConfig.RPathToAdd) { in processLoadCommands() local 267 if (RPaths.contains(RPath)) in processLoadCommands() [all …]
|
| /freebsd/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 | 2766 void writeEntry(StringRef VPath, StringRef RPath); 2818 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 2824 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry() 2858 StringRef RPath = Entry.RPath; in write() local 2860 assert(RPath.starts_with(OverlayDir) && in write() 2862 RPath = RPath.substr(OverlayDir.size()); in write() 2867 writeEntry(path::filename(Entry.VPath), RPath); in write() 2891 StringRef RPath = Entry.RPath; in write() local 2893 assert(RPath.starts_with(OverlayDir) && in write() 2895 RPath = RPath.substr(OverlayDir.size()); 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/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 1341 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local 1344 if (is_contained(MachOConfig.RPathToAdd, RPath)) in parseInstallNameToolOptions() 1348 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1349 if (is_contained(MachOConfig.RPathToPrepend, RPath)) in parseInstallNameToolOptions() 1353 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1355 MachOConfig.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions() 1362 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | InterfaceFile.cpp | 55 void InterfaceFile::addRPath(StringRef RPath, const Target &InputTarget) { in addRPath() argument 56 if (RPath.empty()) in addRPath() 59 RPathEntryT Entry(InputTarget, RPath); in addRPath()
|
| H A D | TextStubV5.cpp | 147 RPath, enumerator 660 File, TBDKey::RPath, TBDKey::Paths, Targets); in parseToInterfaceFile() 1019 insertNonEmptyValues(Library, TBDKey::RPath, std::move(RPaths)); in serializeIF()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | VirtualFileSystem.h | 671 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false) 672 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath() 675 std::string RPath; member
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | InterfaceFile.h | 306 LLVM_ABI void addRPath(StringRef RPath, const Target &InputTarget);
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 278 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|