HomeSort by relevance Sort by last modified time
    Searched refs:getNumOptions (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/Driver/
OptTable.h 79 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
90 /// getNumOptions - Return the total number of option classes.
91 unsigned getNumOptions() const { return NumOptionInfos; }
102 assert((unsigned) (id - 1) < getNumOptions() && "Invalid ID.");
  /external/llvm/include/llvm/Support/
PassNameParser.h 70 if (findOption(P->getPassArgument()) != getNumOptions()) {
CommandLine.h 515 // 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()); }
    [all...]
  /external/clang/lib/Driver/
OptTable.cpp 90 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)
197 const Info *End = OptionInfos + getNumOptions();
359 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
  /external/llvm/lib/Support/
CommandLine.cpp     [all...]

Completed in 401 milliseconds