/external/clang/include/clang/Sema/ |
TypoCorrection.h | 1 //===--- TypoCorrection.h - Class for typo correction results ---*- C++ -*-===// 10 // This file defines the TypoCorrection class, which stores the results of 25 class TypoCorrection { 41 TypoCorrection(const DeclarationName &Name, NamedDecl *NameDecl, 52 TypoCorrection(NamedDecl *Name, NestedNameSpecifier *NNS = nullptr, 61 TypoCorrection(DeclarationName Name, NestedNameSpecifier *NNS = nullptr, 67 TypoCorrection() 158 /// declarations associated with the DeclarationName of this TypoCorrection 166 /// \brief Returns whether this TypoCorrection has a non-empty DeclarationName 169 /// \brief Mark this TypoCorrection as being a keyword [all...] |
ExternalSemaSource.h | 18 #include "clang/Sema/TypoCorrection.h" 199 virtual TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, 205 return TypoCorrection();
|
MultiplexExternalSemaSource.h | 344 TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
|
Sema.h | 43 #include "clang/Sema/TypoCorrection.h" [all...] |
/external/clang/unittests/Sema/ |
ExternalSemaSourceTest.cpp | 18 #include "clang/Sema/TypoCorrection.h" 104 virtual TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, 124 TypoCorrection Correction(ToIdent); 128 return TypoCorrection(); 207 // Check that we use the first successful TypoCorrection returned from an
|
/external/clang/lib/Sema/ |
SemaLookup.cpp | 35 #include "clang/Sema/TypoCorrection.h" [all...] |
MultiplexExternalSemaSource.cpp | 282 TypoCorrection MultiplexExternalSemaSource::CorrectTypo( 290 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC, 295 return TypoCorrection();
|
SemaExprMember.cpp | 560 bool ValidateCandidate(const TypoCorrection &candidate) override { 643 TypoCorrection Corrected = SemaRef.CorrectTypo(R.getLookupNameInfo(), 650 for (TypoCorrection::decl_iterator DI = Corrected.begin(), [all...] |
SemaCXXScopeSpec.cpp | 366 bool ValidateCandidate(const TypoCorrection &candidate) override { 546 if (TypoCorrection Corrected = [all...] |
SemaTemplateVariadic.cpp | 770 bool ValidateCandidate(const TypoCorrection &candidate) override { 811 if (TypoCorrection Corrected = CorrectTypo(R.getLookupNameInfo(), [all...] |
SemaDeclObjC.cpp | 444 bool ValidateCandidate(const TypoCorrection &candidate) override { 524 if (TypoCorrection Corrected = CorrectTypo( 794 TypoCorrection Corrected = CorrectTypo( [all...] |
SemaExprObjC.cpp | [all...] |
SemaDecl.cpp | 76 bool ValidateCandidate(const TypoCorrection &candidate) override { 287 TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(), 520 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(II, IILoc), 763 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(), [all...] |
SemaExpr.cpp | [all...] |
SemaOpenMP.cpp | 547 bool ValidateCandidate(const TypoCorrection &Candidate) override { 571 if (TypoCorrection Corrected = [all...] |
SemaDeclCXX.cpp | [all...] |
SemaInit.cpp | [all...] |
SemaTemplate.cpp | 326 if (TypoCorrection Corrected = CorrectTypo(Found.getLookupNameInfo(), [all...] |
/external/clang/lib/Parse/ |
ParseTentative.cpp | [all...] |
ParseExpr.cpp | 31 #include "clang/Sema/TypoCorrection.h" 431 bool ValidateCandidate(const TypoCorrection &candidate) override { [all...] |
ParseStmt.cpp | 25 #include "clang/Sema/TypoCorrection.h" 134 bool ValidateCandidate(const TypoCorrection &candidate) override { [all...] |