HomeSort by relevance Sort by last modified time
    Searched defs:Corrected (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 507 TypoCorrection Corrected;
509 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
512 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
513 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
517 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
524 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
528 Found.setLookupName(Corrected.getCorrection());
    [all...]
SemaExprMember.cpp 605 TypoCorrection Corrected = SemaRef.CorrectTypo(R.getLookupNameInfo(),
609 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
611 Corrected.getAsString(SemaRef.getLangOpts()));
613 Corrected.getQuoted(SemaRef.getLangOpts()));
614 R.setLookupName(Corrected.getCorrection());
618 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
    [all...]
SemaDeclObjC.cpp 493 if (TypoCorrection Corrected = CorrectTypo(
496 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>();
725 TypoCorrection Corrected = CorrectTypo(
728 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) {
730 << ProtocolId[i].first << Corrected.getCorrection();
    [all...]
SemaInit.cpp     [all...]
SemaDecl.cpp 229 // Ignore a correction to a template type as the to-be-corrected
412 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(II, IILoc),
415 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
416 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
418 if (Corrected.isKeyword()) {
419 // We corrected to a keyword.
420 IdentifierInfo *NewII = Corrected.getCorrectionAsIdentifierInfo();
428 NamedDecl *Result = Corrected.getCorrectionDecl();
437 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
440 llvm_unreachable("could not have corrected a typo here")
    [all...]
SemaExpr.cpp     [all...]

Completed in 49 milliseconds