Lines Matching refs:RPath
148 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
149 if (RPathsToRemove.count(RPath)) { in processLoadCommands()
150 RPathsToRemove.erase(RPath); in processLoadCommands()
162 for (StringRef RPath : Config.RPathsToRemove) { in processLoadCommands() local
163 if (RPathsToRemove.count(RPath)) in processLoadCommands()
166 RPath.str().c_str()); in processLoadCommands()
200 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
201 StringRef NewRPath = Config.RPathsToUpdate.lookup(RPath); in processLoadCommands()
222 for (StringRef RPath : Config.RPathToAdd) { in processLoadCommands() local
223 if (RPaths.count(RPath) != 0) in processLoadCommands()
225 "rpath '" + RPath + in processLoadCommands()
227 RPaths.insert(RPath); in processLoadCommands()
228 Obj.LoadCommands.push_back(buildRPathLoadCommand(RPath)); in processLoadCommands()
231 for (StringRef RPath : Config.RPathToPrepend) { in processLoadCommands() local
232 if (RPaths.count(RPath) != 0) in processLoadCommands()
234 "rpath '" + RPath + in processLoadCommands()
237 RPaths.insert(RPath); in processLoadCommands()
239 buildRPathLoadCommand(RPath)); in processLoadCommands()