Searched refs:Id0 (Results 1 – 2 of 2) sorted by relevance
| /freebsd-9-stable/contrib/llvm/include/llvm/Option/ |
| D | ArgList.h | 43 OptSpecifier Id0, Id1, Id2; variable 57 : Current(it), Args(_Args), Id0(_Id0), Id1(_Id1), Id2(_Id2) { in Current() 140 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U, 142 return arg_iterator(Args.begin(), *this, Id0, Id1, Id2); 168 bool hasArg(OptSpecifier Id0, OptSpecifier Id1) const { in hasArg() argument 169 return getLastArg(Id0, Id1) != 0; in hasArg() 171 bool hasArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const { in hasArg() argument 172 return getLastArg(Id0, Id1, Id2) != 0; in hasArg() 180 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1) const; 181 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const; [all …]
|
| /freebsd-9-stable/contrib/llvm/lib/Option/ |
| D | ArgList.cpp | 23 if (!Id0.isValid()) in SkipToNextArg() 28 if (O.matches(Id0) || in SkipToNextArg() 78 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArg() argument 81 if ((*it)->getOption().matches(Id0) || in getLastArg() 92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() argument 96 if ((*it)->getOption().matches(Id0) || in getLastArg() 107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() argument 111 if ((*it)->getOption().matches(Id0) || in getLastArg() 123 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() argument 128 if ((*it)->getOption().matches(Id0) || in getLastArg() [all …]
|