HomeSort by: relevance | last modified time | path
    Searched defs:RPath (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOObjcopy.cpp 153 StringRef RPath = getPayloadString(LC);
154 if (RPathsToRemove.count(RPath)) {
155 RPathsToRemove.erase(RPath);
165 // Emit an error if the Mach-O binary does not contain an rpath path name
167 for (StringRef RPath : Config.RPathsToRemove) {
168 if (RPathsToRemove.count(RPath))
171 RPath.str().c_str());
191 "rpath '" + New +
205 StringRef RPath = getPayloadString(LC);
206 StringRef NewRPath = Config.RPathsToUpdate.lookup(RPath);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
VirtualFileSystem.h 511 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
512 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)),
515 std::string RPath;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
ConfigManager.cpp 1098 StringRef RPath = Arg->getValue();
1100 // Cannot add and delete the same rpath at the same time.
1101 if (is_contained(Config.RPathToAdd, RPath))
1105 RPath.str().c_str(), RPath.str().c_str());
1106 if (is_contained(Config.RPathToPrepend, RPath))
1110 RPath.str().c_str(), RPath.str().c_str());
1112 Config.RPathsToRemove.insert(RPath);
1119 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VirtualFileSystem.cpp 2178 void writeEntry(StringRef VPath, StringRef RPath);
2229 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) {
2235 << llvm::yaml::escape(RPath) << "\"\n";
2269 StringRef RPath = Entry.RPath;
2272 assert(RPath.substr(0, OverlayDirLen) == OverlayDir &&
2273 "Overlay dir must be contained in RPath");
2274 RPath = RPath.slice(OverlayDirLen, RPath.size())
    [all...]

Completed in 19 milliseconds