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

/external/llvm/include/llvm/
H A DInstructions.h2563 ConstCaseIt; typedef in class:llvm::SwitchInst
2625 ConstCaseIt case_begin() const {
2626 return ConstCaseIt(this, 0);
2636 ConstCaseIt case_end() const {
2637 return ConstCaseIt(this, getNumCases());
2647 ConstCaseIt case_default() const {
2648 return ConstCaseIt(this, DefaultPseudoIndex);
2661 ConstCaseIt findCaseValue(const ConstantInt *C) const {
2662 for (ConstCaseIt i = case_begin(), e = case_end(); i != e; ++i)

Completed in 28 milliseconds