Searched refs:getNumOptions (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/Driver/
H A DOptTable.h65 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
77 unsigned getNumOptions() const { return NumOptionInfos; } function in class:clang::driver::OptTable
88 assert((unsigned) (id - 1) < getNumOptions() && "Invalid ID.");
/external/clang/lib/Driver/
H A DOptTable.cpp90 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
108 for (unsigned i = FirstSearchableIndex, e = getNumOptions(); i != e; ++i) {
116 for (unsigned i = FirstSearchableIndex+1, e = getNumOptions(); i != e; ++i) {
127 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
155 const Info *End = OptionInfos + getNumOptions();
317 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
/external/llvm/include/llvm/Support/
H A DPassNameParser.h70 if (findOption(P->getPassArgument()) != getNumOptions()) {
H A DCommandLine.h515 // getNumOptions - Virtual function implemented by generic subclass to
518 virtual unsigned getNumOptions() const = 0;
563 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
587 // argument string. If the option is not found, getNumOptions() is returned.
615 unsigned getNumOptions() const { return unsigned(Values.size()); } function in class:llvm::cl::parser
/external/llvm/lib/Support/
H A DCommandLine.cpp1048 // argument string. If the option is not found, getNumOptions() is returned.
1051 unsigned e = getNumOptions();
1065 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
1070 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
1086 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
1094 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
1114 unsigned NumOpts = getNumOptions();

Completed in 347 milliseconds