Lines Matching refs:ArgIt
1125 ArrayRef<const char *>::iterator &ArgIt, in matchFlagWithArg() argument
1127 StringRef Arg = *ArgIt; in matchFlagWithArg()
1136 if (++ArgIt == Args.end()) in matchFlagWithArg()
1139 return *ArgIt; in matchFlagWithArg()
1153 for (ArrayRef<const char *>::iterator ArgIt = ArgsArr.begin(); in getRspQuoting() local
1154 ArgIt != ArgsArr.end(); ++ArgIt) { in getRspQuoting()
1155 if (const char *Match = matchFlagWithArg("rsp-quoting", ArgIt, ArgsArr)) { in getRspQuoting()
1175 for (ArrayRef<const char *>::iterator ArgIt = Argv.begin(); in ar_main() local
1176 ArgIt != Argv.end(); ++ArgIt) { in ar_main()
1179 if (handleGenericOption(*ArgIt)) in ar_main()
1181 if (strcmp(*ArgIt, "--") == 0) { in ar_main()
1182 ++ArgIt; in ar_main()
1183 for (; ArgIt != Argv.end(); ++ArgIt) in ar_main()
1184 PositionalArgs.push_back(*ArgIt); in ar_main()
1188 if (*ArgIt[0] != '-') { in ar_main()
1190 Options += *ArgIt; in ar_main()
1192 PositionalArgs.push_back(*ArgIt); in ar_main()
1196 if (strcmp(*ArgIt, "-M") == 0) { in ar_main()
1201 Match = matchFlagWithArg("format", ArgIt, Argv); in ar_main()
1214 if (matchFlagWithArg("plugin", ArgIt, Argv) || in ar_main()
1215 matchFlagWithArg("rsp-quoting", ArgIt, Argv)) in ar_main()
1218 Options += *ArgIt + 1; in ar_main()