Searched refs:Id0 (Results 1 – 2 of 2) sorted by relevance
/external/clang/include/clang/Driver/ |
D | ArgList.h | 47 OptSpecifier Id0, Id1, Id2; variable 61 : Current(it), Args(_Args), Id0(_Id0), Id1(_Id1), Id2(_Id2) { in Current() 144 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U, 146 return arg_iterator(Args.begin(), *this, Id0, Id1, Id2); 172 bool hasArg(OptSpecifier Id0, OptSpecifier Id1) const { in hasArg() argument 173 return getLastArg(Id0, Id1) != 0; in hasArg() 175 bool hasArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const { in hasArg() argument 176 return getLastArg(Id0, Id1, Id2) != 0; in hasArg() 184 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1) const; 185 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const; [all …]
|
/external/clang/lib/Driver/ |
D | ArgList.cpp | 25 if (!Id0.isValid()) in SkipToNextArg() 30 if (O.matches(Id0) || in SkipToNextArg() 80 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArg() argument 83 if ((*it)->getOption().matches(Id0) || in getLastArg() 94 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() argument 98 if ((*it)->getOption().matches(Id0) || in getLastArg() 109 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() argument 113 if ((*it)->getOption().matches(Id0) || in getLastArg() 125 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() argument 130 if ((*it)->getOption().matches(Id0) || in getLastArg() [all …]
|