HomeSort by relevance Sort by last modified time
    Searched refs:CaseVals (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Sema/
SemaStmt.cpp 754 CaseValsTy CaseVals;
825 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
834 CaseVals.push_back(std::make_pair(LoVal, CS));
854 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
856 if (!CaseVals.empty()) {
857 for (unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
859 CaseVals[i].first == ConstantCondValue)
862 if (i != 0 && CaseVals[i].first == CaseVals[i-1].first)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 78 milliseconds