HomeSort by: relevance | last modified time | path
    Searched defs:Typo (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaInternal.h 98 : Typo(TypoName.getName().getAsIdentifierInfo()), CurrentTCIndex(0),
146 /// Return the next typo correction that passes all internal filters
160 /// Return the next typo correction like getNextCorrection, but keep
284 /// Find any visible decls for the given typo correction candidate.
289 /// Perform qualified lookups on the queued set of typo correction
295 /// The name written that is a typo in the source.
296 IdentifierInfo *Typo;
299 /// found (so far) with the typo name.
TypoCorrection.h 1 //===- TypoCorrection.h - Class for typo correction results -----*- C++ -*-===//
10 // Sema's typo correction (Sema::CorrectTypo).
83 /// Gets the DeclarationName of the typo correction
90 /// Gets the NestedNameSpecifier needed to use the typo correction
125 /// Gets the "edit distance" of the typo correction from the typo.
150 /// Gets the pointer to the declaration of the typo correction
246 /// Returns whether this typo correction is correcting to a
251 /// Extra diagnostics are printed after the first diagnostic for the typo.
280 /// the validity of a potential typo correction
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentSema.cpp 786 // Second pass over unresolved \\param commands: do typo correction.
807 // Do typo correction.
1049 StringRef Typo;
1057 explicit SimpleTypoCorrector(StringRef Typo)
1058 : BestDecl(nullptr), Typo(Typo), MaxEditDistance((Typo.size() + 2) / 3),
1084 unsigned MinPossibleEditDistance = abs((int)Name.size() - (int)Typo.size());
1086 Typo.size() / MinPossibleEditDistance < 3)
1089 unsigned EditDistance = Typo.edit_distance(Name, true, MaxEditDistance)
    [all...]

Completed in 21 milliseconds