/external/clang/include/clang/Sema/ |
D | TypoCorrection.h | 256 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
|
D | SemaInternal.h | 116 : Typo(TypoName.getName().getAsIdentifierInfo()), CurrentTCIndex(0), in TypoCorrectionConsumer() 309 IdentifierInfo *Typo; variable
|
D | ExternalSemaSource.h | 202 virtual TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, in CorrectTypo() argument
|
D | MultiplexExternalSemaSource.h | 330 TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo,
|
/external/clang/lib/AST/ |
D | CommentCommandTraits.cpp | 47 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()
|
D | CommentSema.cpp | 953 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/ |
D | ExternalSemaSourceTest.cpp | 108 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/ |
D | preamble-with-implicit-import.m | 3 // CHECK: error: declaration of 'Typo' must be imported 4 // CHECK: error: declaration of 'Typo' must be imported
|
/external/clang/test/Index/Inputs/ |
D | preamble-with-implicit-import.h | 4 void useTypeFromB(Typo *);
|
D | preamble-with-implicit-import-B.h | 3 typedef struct { char x; } Typo; typedef
|
/external/clang/include/clang/AST/ |
D | CommentSema.h | 235 unsigned correctTypoInParmVarReference(StringRef Typo, 243 StringRef Typo,
|
D | CommentCommandTraits.h | 152 const CommandInfo *getTypoCorrectCommandInfo(StringRef Typo) const;
|
/external/clang/test/SemaCXX/ |
D | functional-cast.cpp | 317 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/ |
D | SemaLookup.cpp | 3869 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 …]
|
D | MultiplexExternalSemaSource.cpp | 294 const DeclarationNameInfo &Typo, in CorrectTypo() argument 301 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC, in CorrectTypo()
|
D | SemaExprMember.cpp | 664 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()
|
D | SemaDeclObjC.cpp | 3551 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/ |
D | CHANGES.txt | 17 - Typo fixed in the dependency spec 79 - Typo fix to id_kp_serverAuth object value
|
/external/minigbm/ |
D | common.mk | 486 $(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/ |
D | common.mk | 498 $(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/ |
D | common.mk | 496 $(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/ |
D | parameterized_classes.m | 226 // 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/ |
D | p14.cpp | 112 Typo foo(); // expected-error{{unknown type name 'Typo'}}
|
/external/icu/icu4c/source/data/translit/ |
D | si_si_FONIPA.txt | 152 $s k { a } l[aeo]ːj → ə; # Typo in paper: /j/ was /y/.
|
/external/mesa3d/docs/specs/ |
D | EXT_shader_samples_identical.txt | 169 3 2015/10/27 idr Typo fixes.
|