Searched refs:CaseVals (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Sema/
H A DSemaStmt.cpp673 CaseValsTy CaseVals; local
744 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
753 CaseVals.push_back(std::make_pair(LoVal, CS));
773 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
775 if (!CaseVals.empty()) {
776 for (unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
778 CaseVals[i].first == ConstantCondValue)
781 if (i != 0 && CaseVals[i].first == CaseVals[
[all...]

Completed in 45 milliseconds