Searched refs:getNumOptions (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Option/ |
D | OptTable.cpp | 95 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) { in OptTable() 113 for (unsigned i = FirstSearchableIndex, e = getNumOptions(); i != e; ++i) { in OptTable() 121 for (unsigned i = FirstSearchableIndex + 1, e = getNumOptions(); i != e; ++i){ in OptTable() 131 for (unsigned i = FirstSearchableIndex + 1, e = getNumOptions() + 1; in OptTable() 159 assert((unsigned) (id - 1) < getNumOptions() && "Invalid ID."); in getOption() 195 const Info *End = OptionInfos + getNumOptions(); in ParseOneArg() 397 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) { in PrintHelp()
|
/external/llvm/include/llvm/Option/ |
D | OptTable.h | 70 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID."); in getInfo() 80 unsigned getNumOptions() const { return NumOptionInfos; } in getNumOptions() function
|
/external/llvm/include/llvm/Support/ |
D | PassNameParser.h | 70 if (findOption(P->getPassArgument()) != getNumOptions()) { in passRegistered()
|
D | CommandLine.h | 543 virtual unsigned getNumOptions() const = 0; 588 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) 640 unsigned getNumOptions() const { return unsigned(Values.size()); }
|
/external/llvm/lib/Support/ |
D | CommandLine.cpp | 1233 unsigned e = getNumOptions(); in findOption() 1247 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) in getOptionWidth() 1252 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) in getOptionWidth() 1267 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) { in printOptionInfo() 1275 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) { in printOptionInfo() 1295 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff()
|