Lines Matching refs:Id
41 void ArgList::eraseArg(OptSpecifier Id) { in eraseArg() argument
43 [=](Arg *A) { return A->getOption().matches(Id); }), in eraseArg()
47 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const { in getLastArgNoClaim()
50 if ((*it)->getOption().matches(Id)) in getLastArgNoClaim()
84 Arg *ArgList::getLastArg(OptSpecifier Id) const { in getLastArg()
87 if ((*it)->getOption().matches(Id)) { in getLastArg()
234 StringRef ArgList::getLastArgValue(OptSpecifier Id, in getLastArgValue() argument
236 if (Arg *A = getLastArg(Id)) in getLastArgValue()
241 std::vector<std::string> ArgList::getAllArgValues(OptSpecifier Id) const { in getAllArgValues()
243 AddAllArgValues(Values, Id); in getAllArgValues()
247 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id) const { in AddLastArg()
248 if (Arg *A = getLastArg(Id)) { in AddLastArg()
265 for (OptSpecifier Id : Ids) { in AddAllArgs() local
266 if (Arg->getOption().matches(Id)) { in AddAllArgs()