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 792 CaseValsTy CaseVals;
861 // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
870 CaseVals.push_back(std::make_pair(LoVal, CS));
889 std::stable_sort(CaseVals.begin(), CaseVals.end(), CmpCaseVals);
891 if (!CaseVals.empty()) {
892 for (unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
894 CaseVals[i].first == ConstantCondValue)
897 if (i != 0 && CaseVals[i].first == CaseVals[i-1].first)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 167 milliseconds