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 514 TypoCorrection Corrected;
516 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
519 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
520 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
530 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
534 Found.setLookupName(Corrected.getCorrection());
    [all...]
SemaExprMember.cpp 614 TypoCorrection Corrected = SemaRef.CorrectTypo(R.getLookupNameInfo(),
618 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
620 Corrected.getAsString(SemaRef.getLangOpts()));
622 Corrected.getQuoted(SemaRef.getLangOpts()));
623 R.setLookupName(Corrected.getCorrection());
    [all...]
SemaDeclObjC.cpp 426 if (TypoCorrection Corrected = CorrectTypo(
429 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>();
658 TypoCorrection Corrected = CorrectTypo(
661 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) {
663 << ProtocolId[i].first << Corrected.getCorrection();
    [all...]
SemaInit.cpp     [all...]
SemaDecl.cpp 191 // Ignore a correction to a template type as the to-be-corrected
373 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(&II, IILoc),
376 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
377 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
379 if (Corrected.isKeyword()) {
380 // We corrected to a keyword.
385 NamedDecl *Result = Corrected.getCorrectionDecl();
396 llvm_unreachable("could not have corrected a typo here");
503 Corrected:
578 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo()
    [all...]
SemaExpr.cpp     [all...]

Completed in 46 milliseconds