Searched defs:getNumCases (Results 1 - 2 of 2) sorted by relevance

/external/llvm/utils/TableGen/
H A DDAGISelMatcher.h485 unsigned getNumCases() const { return Cases.size(); } function in class:llvm::SwitchOpcodeMatcher
539 unsigned getNumCases() const { return Cases.size(); } function in class:llvm::SwitchTypeMatcher
/external/llvm/include/llvm/
H A DInstructions.h2544 /// getNumCases - return the number of 'cases' in this switch instruction,
2546 unsigned getNumCases() const { function in class:llvm::SwitchInst
2564 return CaseIt(this, getNumCases(), TheSubsets.end());
2569 return ConstCaseIt(this, getNumCases(), TheSubsets.end());
2647 uint32_t NumberOfCases = (uint32_t)getNumCases();
2704 assert(Index < SI->getNumCases() && "Index out the number of cases.");
2714 assert(Index < SI->getNumCases() && "Index out the number of cases.");
2720 assert((Index < SI->getNumCases() ||
2731 assert((Index == DefaultPseudoIndex || Index < SI->getNumCases()) &&
2738 // Note: Index == getNumCases() mean
[all...]

Completed in 112 milliseconds