reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaStmt.cpp
 1083         if (I != CaseVals.end() && I->first < CRHi) {
 1083         if (I != CaseVals.end() && I->first < CRHi) {
 1084           OverlapVal  = I->first;   // Found overlap with scalar.
 1085           OverlapStmt = I->second;
 1089         I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
 1089         I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
 1090         if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
 1090         if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
 1091           OverlapVal  = (I-1)->first;      // Found overlap with scalar.
 1092           OverlapStmt = (I-1)->second;