Lines Matching defs:InputArgs
156 opt::InputArgList InputArgs =
161 StringRef(InputArgs.getArgString(MissingArgumentIndex)) +
164 if (InputArgs.size() == 0) {
170 if (InputArgs.hasArg(LIPO_help)) {
176 if (InputArgs.hasArg(LIPO_version)) {
182 for (auto *Arg : InputArgs.filtered(LIPO_UNKNOWN))
183 reportError("unknown argument '" + Arg->getAsString(InputArgs) + "'");
185 for (auto *Arg : InputArgs.filtered(LIPO_INPUT))
187 for (auto *Arg : InputArgs.filtered(LIPO_arch)) {
196 if (InputArgs.hasArg(LIPO_output))
197 C.OutputFile = std::string(InputArgs.getLastArgValue(LIPO_output));
199 for (auto *Segalign : InputArgs.filtered(LIPO_segalign)) {
229 C.UseFat64 = InputArgs.hasArg(LIPO_fat64);
231 SmallVector<opt::Arg *, 1> ActionArgs(InputArgs.filtered(LIPO_action_group));
237 auto ReplacementArgsRange = InputArgs.filtered(LIPO_replace);
252 for (auto A : InputArgs.getAllArgValues(LIPO_verify_arch))