Home
last modified time | relevance | path

Searched refs:Typo (Results 1 – 25 of 55) sorted by relevance

123

/external/clang/include/clang/Sema/
DTypoCorrection.h256 explicit CorrectionCandidateCallback(IdentifierInfo *Typo = nullptr,
261 IsObjCIvarLookup(false), IsAddressOfOperand(false), Typo(Typo), in WantTypeSpecifiers()
290 void setTypoName(IdentifierInfo *II) { Typo = II; } in setTypoName()
309 return Typo && candidate.isResolved() && !candidate.requiresImport() && in MatchesTypo()
310 candidate.getCorrectionAsIdentifierInfo() == Typo && in MatchesTypo()
316 IdentifierInfo *Typo; variable
DSemaInternal.h116 : Typo(TypoName.getName().getAsIdentifierInfo()), CurrentTCIndex(0), in TypoCorrectionConsumer()
309 IdentifierInfo *Typo; variable
DExternalSemaSource.h202 virtual TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, in CorrectTypo() argument
DMultiplexExternalSemaSource.h330 TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
/external/clang/lib/AST/
DCommentCommandTraits.cpp47 CommandTraits::getTypoCorrectCommandInfo(StringRef Typo) const { in getTypoCorrectCommandInfo()
50 if (Typo.size() <= 1) in getTypoCorrectCommandInfo()
62 unsigned MinPossibleEditDistance = abs((int)Name.size() - (int)Typo.size()); in getTypoCorrectCommandInfo()
64 unsigned EditDistance = Typo.edit_distance(Name, true, BestEditDistance); in getTypoCorrectCommandInfo()
DCommentSema.cpp953 StringRef Typo; member in clang::comments::__anon5185a10c0211::SimpleTypoCorrector
962 SimpleTypoCorrector(StringRef Typo) : in SimpleTypoCorrector() argument
963 Typo(Typo), MaxEditDistance((Typo.size() + 2) / 3), in SimpleTypoCorrector()
991 unsigned MinPossibleEditDistance = abs((int)Name.size() - (int)Typo.size()); in addDecl()
993 Typo.size() / MinPossibleEditDistance < 3) in addDecl()
996 unsigned EditDistance = Typo.edit_distance(Name, true, MaxEditDistance); in addDecl()
1006 StringRef Typo, in correctTypoInParmVarReference() argument
1008 SimpleTypoCorrector Corrector(Typo); in correctTypoInParmVarReference()
1071 StringRef Typo, in correctTypoInTParamReference() argument
1073 SimpleTypoCorrector Corrector(Typo); in correctTypoInTParamReference()
/external/clang/unittests/Sema/
DExternalSemaSourceTest.cpp108 TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, int LookupKind, in CorrectTypo() argument
114 if (CurrentSema && Typo.getName().getAsString() == CorrectFrom) { in CorrectTypo()
124 NamespaceDecl::Create(Context, DestContext, false, Typo.getBeginLoc(), in CorrectTypo()
125 Typo.getLoc(), ToIdent, nullptr); in CorrectTypo()
150 TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, int LookupKind, in CorrectTypo() argument
156 if (CurrentSema && Typo.getName().getAsString() == CorrectFrom) { in CorrectTypo()
/external/clang/test/Index/
Dpreamble-with-implicit-import.m3 // CHECK: error: declaration of 'Typo' must be imported
4 // CHECK: error: declaration of 'Typo' must be imported
/external/clang/test/Index/Inputs/
Dpreamble-with-implicit-import.h4 void useTypeFromB(Typo *);
Dpreamble-with-implicit-import-B.h3 typedef struct { char x; } Typo; typedef
/external/clang/include/clang/AST/
DCommentSema.h235 unsigned correctTypoInParmVarReference(StringRef Typo,
243 StringRef Typo,
DCommentCommandTraits.h152 const CommandInfo *getTypoCorrectCommandInfo(StringRef Typo) const;
/external/clang/test/SemaCXX/
Dfunctional-cast.cpp317 typedef itn Typo; // expected-error {{unknown type name 'itn'}} in crash_on_invalid_1() typedef
318 (void)Typo(1); // used to crash in crash_on_invalid_1()
/external/clang/lib/Sema/
DSemaLookup.cpp3869 if (!LookupResult::isVisible(SemaRef, ND) && Name != Typo && in FoundDecl()
3892 StringRef TypoStr = Typo->getName(); in addName()
3912 StringRef TypoStr = Typo->getName(); in addCorrection()
4022 Name == Typo && !Candidate.WillReplaceSpecifier()); in resolveCorrection()
4065 unsigned TypoLen = Typo->getName().size(); in performQualifiedLookups()
4091 if (QR.getCorrectionAsIdentifierInfo() != Typo && TmpED && in performQualifiedLookups()
4110 OldOStream << Typo->getName(); in performQualifiedLookups()
4485 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); in makeTypoCorrectionConsumer() local
4486 if (!Typo) in makeTypoCorrectionConsumer()
4500 if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier()) in makeTypoCorrectionConsumer()
[all …]
DMultiplexExternalSemaSource.cpp294 const DeclarationNameInfo &Typo, in CorrectTypo() argument
301 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC, in CorrectTypo()
DSemaExprMember.cpp664 DeclarationName Typo = R.getLookupName(); in LookupMemberExprInRecord() local
685 Typo.getAsString() == TC.getAsString(SemaRef.getLangOpts()); in LookupMemberExprInRecord()
687 << Typo << DC << DroppedSpecifier in LookupMemberExprInRecord()
690 SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << DC << BaseRange; in LookupMemberExprInRecord()
DSemaDeclObjC.cpp3551 StringRef Typo, const ObjCMethodDecl * Method) { in HelperSelectorsForTypoCorrection() argument
3556 unsigned MinPossibleEditDistance = abs((int)MethodName.size() - (int)Typo.size()); in HelperSelectorsForTypoCorrection()
3558 Typo.size() / MinPossibleEditDistance < 1) in HelperSelectorsForTypoCorrection()
3560 unsigned EditDistance = Typo.edit_distance(MethodName, true, MaxEditDistance); in HelperSelectorsForTypoCorrection()
/external/python/pyasn1-modules/
DCHANGES.txt17 - Typo fixed in the dependency spec
79 - Typo fix to id_kp_serverAuth object value
/external/minigbm/
Dcommon.mk486 $(error Typo alert! LIBARY != LIBRARY)
494 $(error Typo alert! LIBARY != LIBRARY)
502 $(error Typo alert! LIBARY != LIBRARY)
510 $(error Typo alert! LIBARY != LIBRARY)
/external/minijail/
Dcommon.mk498 $(error Typo alert! LIBARY != LIBRARY)
506 $(error Typo alert! LIBARY != LIBRARY)
514 $(error Typo alert! LIBARY != LIBRARY)
522 $(error Typo alert! LIBARY != LIBRARY)
/external/modp_b64/
Dcommon.mk496 $(error Typo alert! LIBARY != LIBRARY)
504 $(error Typo alert! LIBARY != LIBRARY)
512 $(error Typo alert! LIBARY != LIBRARY)
520 $(error Typo alert! LIBARY != LIBRARY)
/external/clang/test/SemaObjC/
Dparameterized_classes.m226 // Typo correction: protocol bias.
229 // Typo correction: type bias.
233 // Typo correction: bias set by correction itself to a protocol.
236 // Typo correction: bias set by correction itself to a type.
/external/clang/test/CXX/except/except.spec/
Dp14.cpp112 Typo foo(); // expected-error{{unknown type name 'Typo'}}
/external/icu/icu4c/source/data/translit/
Dsi_si_FONIPA.txt152 $s k { a } l[aeo]ːj → ə; # Typo in paper: /j/ was /y/.
/external/mesa3d/docs/specs/
DEXT_shader_samples_identical.txt169 3 2015/10/27 idr Typo fixes.

123