clang API Documentation

Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes
clang::TypoCorrection Class Reference

Simple class containing the result of Sema::CorrectTypo. More...

#include <TypoCorrection.h>

Collaboration diagram for clang::TypoCorrection:
Collaboration graph
[legend]

List of all members.

Public Types

typedef SmallVectorImpl
< NamedDecl * >::iterator 
decl_iterator
typedef SmallVectorImpl
< NamedDecl * >
::const_iterator 
const_decl_iterator

Public Member Functions

 TypoCorrection (const DeclarationName &Name, NamedDecl *NameDecl, NestedNameSpecifier *NNS=nullptr, unsigned CharDistance=0, unsigned QualifierDistance=0)
 TypoCorrection (NamedDecl *Name, NestedNameSpecifier *NNS=nullptr, unsigned CharDistance=0)
 TypoCorrection (DeclarationName Name, NestedNameSpecifier *NNS=nullptr, unsigned CharDistance=0)
 TypoCorrection ()
DeclarationName getCorrection () const
 Gets the DeclarationName of the typo correction.
IdentifierInfogetCorrectionAsIdentifierInfo () const
NestedNameSpecifiergetCorrectionSpecifier () const
 Gets the NestedNameSpecifier needed to use the typo correction.
void setCorrectionSpecifier (NestedNameSpecifier *NNS)
void WillReplaceSpecifier (bool ForceReplacement)
bool WillReplaceSpecifier () const
void setQualifierDistance (unsigned ED)
void setCallbackDistance (unsigned ED)
unsigned getEditDistance (bool Normalized=true) const
 Gets the "edit distance" of the typo correction from the typo. If Normalized is true, scale the distance down by the CharDistanceWeight to return the edit distance in terms of single-character edits.
NamedDeclgetCorrectionDecl () const
 Gets the pointer to the declaration of the typo correction.
template<class DeclClass >
DeclClass * getCorrectionDeclAs () const
void ClearCorrectionDecls ()
 Clears the list of NamedDecls.
void setCorrectionDecl (NamedDecl *CDecl)
 Clears the list of NamedDecls before adding the new one.
void setCorrectionDecls (ArrayRef< NamedDecl * > Decls)
 Clears the list of NamedDecls and adds the given set.
void addCorrectionDecl (NamedDecl *CDecl)
 Add the given NamedDecl to the list of NamedDecls that are the declarations associated with the DeclarationName of this TypoCorrection.
std::string getAsString (const LangOptions &LO) const
std::string getQuoted (const LangOptions &LO) const
LLVM_EXPLICIT operator bool () const
 Returns whether this TypoCorrection has a non-empty DeclarationName.
void makeKeyword ()
 Mark this TypoCorrection as being a keyword. Since addCorrectionDeclsand setCorrectionDecl don't allow NULL to be added to the list of the correction's NamedDecl pointers, NULL is added as the only element in the list to mark this TypoCorrection as a keyword.
bool isKeyword () const
template<std::size_t StrLen>
bool isKeyword (const char(&Str)[StrLen]) const
bool isResolved () const
bool isOverloaded () const
void setCorrectionRange (CXXScopeSpec *SS, const DeclarationNameInfo &TypoName)
SourceRange getCorrectionRange () const
decl_iterator begin ()
decl_iterator end ()
const_decl_iterator begin () const
const_decl_iterator end () const
bool requiresImport () const
 Returns whether this typo correction is correcting to a declaration that was declared in a module that has not been imported.
void setRequiresImport (bool Req)

Static Public Member Functions

static unsigned NormalizeEditDistance (unsigned ED)

Static Public Attributes

static const unsigned InvalidDistance = ~0U
static const unsigned MaximumDistance = 10000U
static const unsigned CharDistanceWeight = 100U
static const unsigned QualifierDistanceWeight = 110U
static const unsigned CallbackDistanceWeight = 150U

Detailed Description

Simple class containing the result of Sema::CorrectTypo.

Definition at line 26 of file TypoCorrection.h.


Member Typedef Documentation

typedef SmallVectorImpl<NamedDecl *>::const_iterator clang::TypoCorrection::const_decl_iterator

Definition at line 217 of file TypoCorrection.h.

typedef SmallVectorImpl<NamedDecl *>::iterator clang::TypoCorrection::decl_iterator

Definition at line 212 of file TypoCorrection.h.


Constructor & Destructor Documentation

clang::TypoCorrection::TypoCorrection ( const DeclarationName Name,
NamedDecl NameDecl,
NestedNameSpecifier NNS = nullptr,
unsigned  CharDistance = 0,
unsigned  QualifierDistance = 0 
) [inline]

Definition at line 42 of file TypoCorrection.h.

clang::TypoCorrection::TypoCorrection ( NamedDecl Name,
NestedNameSpecifier NNS = nullptr,
unsigned  CharDistance = 0 
) [inline]

Definition at line 53 of file TypoCorrection.h.

clang::TypoCorrection::TypoCorrection ( DeclarationName  Name,
NestedNameSpecifier NNS = nullptr,
unsigned  CharDistance = 0 
) [inline]

Definition at line 62 of file TypoCorrection.h.

Definition at line 68 of file TypoCorrection.h.


Member Function Documentation

Add the given NamedDecl to the list of NamedDecls that are the declarations associated with the DeclarationName of this TypoCorrection.

Definition at line 4384 of file SemaLookup.cpp.

References clang::NamedDecl::getDeclName(), clang::NamedDecl::getUnderlyingDecl(), and isKeyword().

Referenced by setCorrectionDecl().

Definition at line 218 of file TypoCorrection.h.

References isKeyword().

Clears the list of NamedDecls.

Definition at line 142 of file TypoCorrection.h.

Definition at line 221 of file TypoCorrection.h.

std::string TypoCorrection::getAsString ( const LangOptions LO) const
template<class DeclClass >
DeclClass* clang::TypoCorrection::getCorrectionDeclAs ( ) const [inline]

Gets the NestedNameSpecifier needed to use the typo correction.

Definition at line 80 of file TypoCorrection.h.

Referenced by clang::Sema::DiagnoseEmptyLookup(), clang::Sema::getTypeName(), and clang::CorrectionCandidateCallback::MatchesTypo().

unsigned clang::TypoCorrection::getEditDistance ( bool  Normalized = true) const [inline]

Gets the "edit distance" of the typo correction from the typo. If Normalized is true, scale the distance down by the CharDistanceWeight to return the edit distance in terms of single-character edits.

Definition at line 116 of file TypoCorrection.h.

References CallbackDistanceWeight, CharDistanceWeight, InvalidDistance, MaximumDistance, NormalizeEditDistance(), and QualifierDistanceWeight.

Referenced by clang::TypoCorrectionConsumer::addCorrection(), clang::Sema::CorrectTypo(), and isCandidateViable().

std::string clang::TypoCorrection::getQuoted ( const LangOptions LO) const [inline]

Definition at line 163 of file TypoCorrection.h.

References getAsString().

Referenced by clang::Sema::diagnoseTypo().

template<std::size_t StrLen>
bool clang::TypoCorrection::isKeyword ( const char(&)  Str[StrLen]) const [inline]

Definition at line 196 of file TypoCorrection.h.

Referenced by clang::Sema::DiagnoseEmptyLookup().

Mark this TypoCorrection as being a keyword. Since addCorrectionDeclsand setCorrectionDecl don't allow NULL to be added to the list of the correction's NamedDecl pointers, NULL is added as the only element in the list to mark this TypoCorrection as a keyword.

Definition at line 174 of file TypoCorrection.h.

LLVM_EXPLICIT clang::TypoCorrection::operator bool ( ) const [inline]

Returns whether this TypoCorrection has a non-empty DeclarationName.

Definition at line 168 of file TypoCorrection.h.

References bool.

Returns whether this typo correction is correcting to a declaration that was declared in a module that has not been imported.

Definition at line 225 of file TypoCorrection.h.

Referenced by clang::Sema::diagnoseTypo(), clang::TypoCorrectionConsumer::getNextCorrection(), and clang::CorrectionCandidateCallback::MatchesTypo().

Definition at line 100 of file TypoCorrection.h.

Referenced by isCandidateViable().

Clears the list of NamedDecls before adding the new one.

Definition at line 147 of file TypoCorrection.h.

References addCorrectionDecl().

Referenced by clang::Sema::DiagnoseEmptyLookup(), and DiagnoseInvalidRedeclaration().

void clang::TypoCorrection::setCorrectionDecls ( ArrayRef< NamedDecl * >  Decls) [inline]

Clears the list of NamedDecls and adds the given set.

Definition at line 153 of file TypoCorrection.h.

Referenced by checkCorrectionVisibility().

void clang::TypoCorrection::setCorrectionRange ( CXXScopeSpec SS,
const DeclarationNameInfo TypoName 
) [inline]

Definition at line 83 of file TypoCorrection.h.

Definition at line 96 of file TypoCorrection.h.

Definition at line 226 of file TypoCorrection.h.

Referenced by checkCorrectionVisibility().

void clang::TypoCorrection::WillReplaceSpecifier ( bool  ForceReplacement) [inline]

Definition at line 88 of file TypoCorrection.h.

Referenced by clang::Sema::DiagnoseEmptyLookup(), and LookupMemberExprInRecord().

Definition at line 92 of file TypoCorrection.h.


Member Data Documentation

Definition at line 40 of file TypoCorrection.h.

Referenced by getEditDistance().

Definition at line 38 of file TypoCorrection.h.

Referenced by getEditDistance(), and NormalizeEditDistance().

Definition at line 29 of file TypoCorrection.h.

Referenced by getEditDistance(), isCandidateViable(), and NormalizeEditDistance().

Definition at line 32 of file TypoCorrection.h.

Referenced by getEditDistance(), and NormalizeEditDistance().

Definition at line 39 of file TypoCorrection.h.

Referenced by getEditDistance().


The documentation for this class was generated from the following files: