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

/external/llvm/include/llvm/IR/
H A DInstructions.h2522 SubsetsConstIt, const BasicBlock> ConstCaseIt; typedef in class:llvm::SwitchInst
2567 ConstCaseIt case_begin() const {
2568 return ConstCaseIt(this, 0, TheSubsets.begin());
2578 ConstCaseIt case_end() const {
2579 return ConstCaseIt(this, getNumCases(), TheSubsets.end());
2589 ConstCaseIt case_default() const {
2590 return ConstCaseIt(this, DefaultPseudoIndex, TheSubsets.end());
2603 ConstCaseIt findCaseValue(const ConstantInt *C) const {
2604 for (ConstCaseIt i = case_begin(), e = case_end(); i != e; ++i)
2658 for (ConstCaseIt
[all...]

Completed in 45 milliseconds