Home | History | Annotate | Download | only in Sema

Lines Matching defs:Corrected

1469   TypoCorrection Corrected;
1470 if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(),
1472 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
1473 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
1474 R.setLookupName(Corrected.getCorrection());
1476 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
1477 if (Corrected.isOverloaded()) {
1480 for (TypoCorrection::decl_iterator CD = Corrected.begin(),
1481 CDEnd = Corrected.end();