Lines Matching refs:Corrected
2487 TypoCorrection Corrected; in DiagnoseEmptyLookup() local
2501 } else if (S && (Corrected = in DiagnoseEmptyLookup()
2504 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseEmptyLookup()
2506 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr; in DiagnoseEmptyLookup()
2507 R.setLookupName(Corrected.getCorrection()); in DiagnoseEmptyLookup()
2511 NamedDecl *ND = Corrected.getFoundDecl(); in DiagnoseEmptyLookup()
2513 if (Corrected.isOverloaded()) { in DiagnoseEmptyLookup()
2517 for (NamedDecl *CD : Corrected) { in DiagnoseEmptyLookup()
2531 Corrected.setCorrectionDecl(ND); in DiagnoseEmptyLookup()
2535 Corrected.setCorrectionDecl(ND); in DiagnoseEmptyLookup()
2542 if (Corrected.getCorrectionSpecifier()) { in DiagnoseEmptyLookup()
2543 const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType(); in DiagnoseEmptyLookup()
2570 unsigned NoteID = Corrected.getCorrectionDeclAs<ImplicitParamDecl>() in DiagnoseEmptyLookup()
2574 diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name, in DiagnoseEmptyLookup()
2577 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) in DiagnoseEmptyLookup()
5703 if (TypoCorrection Corrected = S.CorrectTypo( in TryTypoCorrectionForCall() local
5707 if (NamedDecl *ND = Corrected.getFoundDecl()) { in TryTypoCorrectionForCall()
5708 if (Corrected.isOverloaded()) { in TryTypoCorrectionForCall()
5711 for (NamedDecl *CD : Corrected) { in TryTypoCorrectionForCall()
5719 Corrected.setCorrectionDecl(ND); in TryTypoCorrectionForCall()
5727 return Corrected; in TryTypoCorrectionForCall()