Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.cpp153 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
154 if (RPathsToRemove.count(RPath)) { in processLoadCommands()
155 RPathsToRemove.erase(RPath); in processLoadCommands()
167 for (StringRef RPath : Config.RPathsToRemove) { in processLoadCommands() local
168 if (RPathsToRemove.count(RPath)) in processLoadCommands()
171 RPath.str().c_str()); in processLoadCommands()
205 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
206 StringRef NewRPath = Config.RPathsToUpdate.lookup(RPath); in processLoadCommands()
227 for (StringRef RPath : Config.RPathToAdd) { in processLoadCommands() local
228 if (RPaths.contains(RPath)) in processLoadCommands()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DFileCollector.cpp199 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 DVirtualFileSystem.cpp2178 void writeEntry(StringRef VPath, StringRef RPath);
2229 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument
2235 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry()
2269 StringRef RPath = Entry.RPath; in write() local
2272 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write()
2274 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write()
2279 writeEntry(path::filename(Entry.VPath), RPath); in write()
2303 StringRef RPath = Entry.RPath; in write() local
2306 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write()
2308 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DUtils.h168 virtual void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument
169 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
H A DConfigManager.cpp1098 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local
1101 if (is_contained(Config.RPathToAdd, RPath)) in parseInstallNameToolOptions()
1105 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions()
1106 if (is_contained(Config.RPathToPrepend, RPath)) in parseInstallNameToolOptions()
1110 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions()
1112 Config.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions()
1119 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DVirtualFileSystem.h511 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
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp274 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()