/external/clang/lib/Sema/ |
D | SemaCXXScopeSpec.cpp | 513 TypoCorrection Corrected; in BuildCXXNestedNameSpecifier() local 515 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(), in BuildCXXNestedNameSpecifier() 518 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in BuildCXXNestedNameSpecifier() 519 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); in BuildCXXNestedNameSpecifier() 529 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { in BuildCXXNestedNameSpecifier() 533 Found.setLookupName(Corrected.getCorrection()); in BuildCXXNestedNameSpecifier()
|
D | SemaTemplateVariadic.cpp | 812 if (TypoCorrection Corrected = CorrectTypo(R.getLookupNameInfo(), in ActOnSizeofParameterPackExpr() local 815 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); in ActOnSizeofParameterPackExpr() 816 ParameterPack = Corrected.getCorrectionDecl(); in ActOnSizeofParameterPackExpr() 820 NameLoc, Corrected.getAsString(getLangOpts())); in ActOnSizeofParameterPackExpr()
|
D | SemaExprMember.cpp | 614 TypoCorrection Corrected = SemaRef.CorrectTypo(R.getLookupNameInfo(), in LookupMemberExprInRecord() local 618 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { in LookupMemberExprInRecord() 620 Corrected.getAsString(SemaRef.getLangOpts())); in LookupMemberExprInRecord() 622 Corrected.getQuoted(SemaRef.getLangOpts())); in LookupMemberExprInRecord() 623 R.setLookupName(Corrected.getCorrection()); in LookupMemberExprInRecord() 1196 if (TypoCorrection Corrected = CorrectTypo(R.getLookupNameInfo(), in LookupMemberExpr() local 1199 IV = Corrected.getCorrectionDeclAs<ObjCIvarDecl>(); in LookupMemberExpr()
|
D | SemaExprObjC.cpp | 1485 if (TypoCorrection Corrected = CorrectTypo( in HandleExprPropertyRefExpr() local 1489 Corrected.getCorrectionDeclAs<ObjCPropertyDecl>(); in HandleExprPropertyRefExpr() 1490 DeclarationName TypoResult = Corrected.getCorrection(); in HandleExprPropertyRefExpr() 1717 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(), in getObjCMessageKind() local 1720 if (Corrected.isKeyword()) { in getObjCMessageKind() 1724 << Name << Corrected.getCorrection() in getObjCMessageKind() 1728 Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) { in getObjCMessageKind() 1732 << Name << Corrected.getCorrection() in getObjCMessageKind() 1736 << Corrected.getCorrection(); in getObjCMessageKind()
|
D | SemaDeclObjC.cpp | 478 if (TypoCorrection Corrected = CorrectTypo( in ActOnStartClassInterface() local 481 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>(); in ActOnStartClassInterface() 710 TypoCorrection Corrected = CorrectTypo( in FindProtocolDeclaration() local 713 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) { in FindProtocolDeclaration() 715 << ProtocolId[i].first << Corrected.getCorrection(); in FindProtocolDeclaration() 949 if (TypoCorrection Corrected = CorrectTypo( in ActOnStartClassImplementation() local 957 IDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>(); in ActOnStartClassImplementation() 958 DeclarationName CorrectedName = Corrected.getCorrection(); in ActOnStartClassImplementation()
|
D | SemaDecl.cpp | 413 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(II, IILoc), in DiagnoseUnknownTypeName() local 416 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseUnknownTypeName() 417 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); in DiagnoseUnknownTypeName() 419 if (Corrected.isKeyword()) { in DiagnoseUnknownTypeName() 421 IdentifierInfo *NewII = Corrected.getCorrectionAsIdentifierInfo(); in DiagnoseUnknownTypeName() 429 NamedDecl *Result = Corrected.getCorrectionDecl(); in DiagnoseUnknownTypeName() 618 Corrected: in ClassifyName() 660 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(), in ClassifyName() local 665 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in ClassifyName() 666 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); in ClassifyName() [all …]
|
D | SemaTemplate.cpp | 323 if (TypoCorrection Corrected = CorrectTypo(Found.getLookupNameInfo(), in LookupTemplateName() local 326 Found.setLookupName(Corrected.getCorrection()); in LookupTemplateName() 327 if (Corrected.getCorrectionDecl()) in LookupTemplateName() 328 Found.addDecl(Corrected.getCorrectionDecl()); in LookupTemplateName() 331 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in LookupTemplateName() 332 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); in LookupTemplateName()
|
D | SemaInit.cpp | 1711 TypoCorrection Corrected = SemaRef.CorrectTypo( in CheckDesignatedInitializer() local 1715 if (Corrected) { in CheckDesignatedInitializer() 1717 Corrected.getAsString(SemaRef.getLangOpts())); in CheckDesignatedInitializer() 1719 Corrected.getQuoted(SemaRef.getLangOpts())); in CheckDesignatedInitializer() 1720 ReplacementField = Corrected.getCorrectionDeclAs<FieldDecl>(); in CheckDesignatedInitializer()
|
D | SemaExpr.cpp | 1575 TypoCorrection Corrected; in DiagnoseEmptyLookup() local 1576 if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), in DiagnoseEmptyLookup() 1578 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseEmptyLookup() 1579 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); in DiagnoseEmptyLookup() 1580 R.setLookupName(Corrected.getCorrection()); in DiagnoseEmptyLookup() 1582 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { in DiagnoseEmptyLookup() 1583 if (Corrected.isOverloaded()) { in DiagnoseEmptyLookup() 1586 for (TypoCorrection::decl_iterator CD = Corrected.begin(), in DiagnoseEmptyLookup() 1587 CDEnd = Corrected.end(); in DiagnoseEmptyLookup()
|
/external/strace/ |
D | NEWS | 77 * Corrected msgsnd indirect ipccall decoding. 78 * Corrected decoding of 64bit syscalls. 80 * Corrected getsockopt decoding on architectures where 83 * Corrected decoding of epoll_pwait. 85 * Corrected handling of killed threads.
|
/external/icu4c/data/unidata/ |
D | NormalizationCorrections.txt | 35 # Field 2: Corrected decomposition
|
/external/qemu/distrib/sdl-1.2.15/ |
D | README.OS2 | 272 - Corrected the time returned by status in CDROM support (it was incorrect) 276 …- Corrected a little problem in a comment at SDL-1.2.7\test\torturethread.c, line 18 (missing */, …
|
/external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/ |
D | PHP SmartyPants Readme.txt | 315 * Corrected a bug that prevented special characters from being 333 * Corrected a problem with quotes immediately following a dash
|
/external/ipsec-tools/ |
D | NEWS | 32 o Corrected modecfg option syntax
|
/external/srtp/ |
D | Changes | 142 Corrected spelling of Richard Priestley's name in credits. Sorry
|
/external/libpng/ |
D | CHANGES | 258 Corrected a problem with png_get_tRNS() which returned undefined trans array 260 Corrected png_get_tRNS() again. 268 Corrected some logic errors in png_do_invert_alpha() (Chris Patterson) 270 Corrected a bug in pngpread() introduced in version 99c (Kevin Bracey) 325 Corrected some bugs in the experimental weighted filtering heuristics. 352 Corrected example.c, use of row_pointers in png_write_image(). 354 Corrected several statements that used side effects illegally in pngrutil.c 441 Corrected the typedef for png_free_ptr in png.h (Jesse Jones). 687 Corrected bugs in documentation regarding png_read_row() and png_write_row(). 818 Corrected the definition of PNG_TRANSFORM_INVERT_ALPHA (0x0400 not 0x0200) [all …]
|
/external/lohit-fonts/lohit-telugu-ttf/ |
D | ChangeLog.old | 40 - Corrected positioning of U+0953 for Hindi font.
|
/external/lohit-fonts/lohit-kannada-ttf/ |
D | ChangeLog.old | 40 - Corrected positioning of U+0953 for Hindi font.
|
/external/lohit-fonts/lohit-bengali-ttf/ |
D | ChangeLog.old | 40 - Corrected positioning of U+0953 for Hindi font.
|
/external/dropbear/libtommath/ |
D | changes.txt | 336 -- Corrected a bunch of small "warnings" 339 -- Corrected some bugs where error messages were potentially ignored
|
/external/oprofile/ |
D | ChangeLog-2004 | 3 * events/Makefile.am: Corrected type for events_files. 117 * events/ppc64/power4/events: Corrected group 4 counter assignments.
|
/external/libppp/src/ |
D | README.nat | 313 Corrected error in handling incoming UDP packets
|
/external/protobuf/ |
D | CHANGES.txt | 277 * Corrected ListFields() signature in Message base class to match what
|
/external/libffi/ |
D | ChangeLog.v1 | 605 * ffi.c (ffi_call): Corrected fn arg definition.
|
/external/e2fsprogs/debian/ |
D | changelog | 182 * Corrected dumpe2fs's usage message 2551 * Corrected the location of the GPL in copyright file. 2711 * Corrected doc menu entries to point to the real documents' places. 2715 * Corrected typo in Description (Fixes: Bug#18890). 2770 * Corrected link from flushb.8 to undocumented (Closes:Bug#15335,Bug#15660,Bug#15675). 2827 * Corrected compiler-options handling in debian/rules (use CCOPTS instead
|