Home
last modified time | relevance | path

Searched refs:CaseRanges (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1297 CaseRangesTy CaseRanges; in ActOnFinishSwitchStmt() local
1356 CaseRanges.push_back(std::make_pair(LoVal, CS)); in ActOnFinishSwitchStmt()
1426 if (!CaseRanges.empty()) { in ActOnFinishSwitchStmt()
1429 llvm::stable_sort(CaseRanges); in ActOnFinishSwitchStmt()
1433 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { in ActOnFinishSwitchStmt()
1434 llvm::APSInt &LoVal = CaseRanges[i].first; in ActOnFinishSwitchStmt()
1435 CaseStmt *CR = CaseRanges[i].second; in ActOnFinishSwitchStmt()
1454 CaseRanges.erase(CaseRanges.begin()+i); in ActOnFinishSwitchStmt()
1471 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { in ActOnFinishSwitchStmt()
1472 llvm::APSInt &CRLo = CaseRanges[i].first; in ActOnFinishSwitchStmt()
[all …]