HomeSort by relevance Sort by last modified time
    Searched refs:Typo (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/AST/
CommentCommandTraits.cpp 47 CommandTraits::getTypoCorrectCommandInfo(StringRef Typo) const {
50 if (Typo.size() <= 1)
62 unsigned MinPossibleEditDistance = abs((int)Name.size() - (int)Typo.size());
64 unsigned EditDistance = Typo.edit_distance(Name, true, BestEditDistance);
CommentSema.cpp 767 // Second pass over unresolved \\param commands: do typo correction.
788 // Do typo correction.
    [all...]
  /external/clang/include/clang/AST/
CommentCommandTraits.h 148 const CommandInfo *getTypoCorrectCommandInfo(StringRef Typo) const;
CommentSema.h 238 /// typo.
239 unsigned correctTypoInParmVarReference(StringRef Typo,
247 StringRef Typo,
  /external/clang/unittests/Sema/
ExternalSemaSourceTest.cpp 89 // \brief Always corrects a typo matching CorrectFrom with a new namespace
104 virtual TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
111 if (CurrentSema && Typo.getName().getAsString() == CorrectFrom) {
121 NamespaceDecl::Create(Context, DestContext, false, Typo.getBeginLoc(),
122 Typo.getLoc(), ToIdent, nullptr);
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 69 /// which will be used during typo correction.
196 /// correct a typo (really, to offer suggestions to repair a failed lookup).
199 virtual TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
MultiplexExternalSemaSource.h 220 /// which will be used during typo correction.
344 TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
Sema.h     [all...]
  /external/clang/test/SemaCXX/
functional-cast.cpp 316 typedef itn Typo; // expected-error {{unknown type name 'itn'}}
317 (void)Typo(1); // used to crash
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
MultiplexExternalSemaSource.cpp 283 const DeclarationNameInfo &Typo,
290 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC,
SemaDeclObjC.cpp 435 // Callback to only accept typo corrections that are Objective-C classes.
521 // Try to correct for a typo in the superclass name without correcting
    [all...]
  /external/clang/test/CXX/except/except.spec/
p14.cpp 112 Typo foo(); // expected-error{{unknown type name 'Typo'}}

Completed in 1304 milliseconds