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

  /external/llvm/include/llvm/Option/
OptTable.h 71 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
82 unsigned getNumOptions() const { return NumOptionInfos; }
  /external/llvm/lib/Option/
OptTable.cpp 100 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
118 for (unsigned i = FirstSearchableIndex, e = getNumOptions(); i != e; ++i) {
126 for (unsigned i = FirstSearchableIndex + 1, e = getNumOptions(); i != e; ++i){
136 for (unsigned i = FirstSearchableIndex + 1, e = getNumOptions() + 1;
164 assert((unsigned) (id - 1) < getNumOptions() && "Invalid ID.");
207 const Info *End = OptionInfos + getNumOptions();
396 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
  /external/llvm/include/llvm/IR/
LegacyPassNameParser.h 73 if (findOption(P->getPassArgument()) != getNumOptions()) {
  /external/llvm/lib/Support/
CommandLine.cpp     [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 550 // getNumOptions - Virtual function implemented by generic subclass to
553 virtual unsigned getNumOptions() const = 0;
598 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
622 // argument string. If the option is not found, getNumOptions() is returned.
650 unsigned getNumOptions() const override { return unsigned(Values.size()); }
    [all...]

Completed in 1428 milliseconds