Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp173 StringRef RPath = getPayloadString(LC); in processLoadCommands()
174 if (RPathsToRemove.count(RPath)) { in processLoadCommands()
175 RPathsToRemove.erase(RPath); in processLoadCommands()
187 for (StringRef RPath : MachOConfig.RPathsToRemove) { in processLoadCommands()
188 if (RPathsToRemove.count(RPath)) in processLoadCommands()
191 RPath.str().c_str()); in processLoadCommands()
225 StringRef RPath = getPayloadString(LC); in processLoadCommands()
226 StringRef NewRPath = MachOConfig.RPathsToUpdate.lookup(RPath); in processLoadCommands()
247 for (StringRef RPath : MachOConfig.RPathToAdd) { in processLoadCommands()
248 if (RPaths.contains(RPath)) in processLoadCommands() local
165 StringRef RPath = getPayloadString(LC); processLoadCommands() local
179 for (StringRef RPath : MachOConfig.RPathsToRemove) { processLoadCommands() local
217 StringRef RPath = getPayloadString(LC); processLoadCommands() local
239 for (StringRef RPath : MachOConfig.RPathToAdd) { processLoadCommands() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A 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()
H A DVirtualFileSystem.cpp2753 void writeEntry(StringRef VPath, StringRef RPath);
2805 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument
2811 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry()
2845 StringRef RPath = Entry.RPath; in write() local
2847 assert(RPath.starts_with(OverlayDir) && in write()
2849 RPath = RPath.slice(OverlayDir.size(), RPath.size()); in write()
2854 writeEntry(path::filename(Entry.VPath), RPath); in write()
2878 StringRef RPath = Entry.RPath; in write() local
2880 assert(RPath.starts_with(OverlayDir) && in write()
2882 RPath = RPath.slice(OverlayDir.size(), RPath.size()); in write()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DModuleDependencyCollector.h32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {} in addFileMapping() argument
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp1210 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local
1213 if (is_contained(MachOConfig.RPathToAdd, RPath)) in parseInstallNameToolOptions()
1217 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions()
1218 if (is_contained(MachOConfig.RPathToPrepend, RPath)) in parseInstallNameToolOptions()
1222 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions()
1224 MachOConfig.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions()
1231 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp57 void InterfaceFile::addRPath(StringRef RPath, const Target &InputTarget) { in addRPath() argument
58 if (RPath.empty()) in addRPath()
61 RPathEntryT Entry(InputTarget, RPath); in addRPath()
H A DTextStubV5.cpp120 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/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h653 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
654 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath()
657 std::string RPath; member
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DInterfaceFile.h304 void addRPath(StringRef RPath, const Target &InputTarget);
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp279 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()