/external/clang/lib/Sema/ |
D | SemaCXXScopeSpec.cpp | 593 if (TypoCorrection Corrected = CorrectTypo( in BuildCXXNestedNameSpecifier() local 599 Corrected.WillReplaceSpecifier() && in BuildCXXNestedNameSpecifier() 600 Name.getAsString() == Corrected.getAsString(getLangOpts()); in BuildCXXNestedNameSpecifier() 603 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) in BuildCXXNestedNameSpecifier() 607 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest) in BuildCXXNestedNameSpecifier() 610 if (NamedDecl *ND = Corrected.getCorrectionDecl()) in BuildCXXNestedNameSpecifier() 612 Found.setLookupName(Corrected.getCorrection()); in BuildCXXNestedNameSpecifier()
|
D | SemaTemplateVariadic.cpp | 844 if (TypoCorrection Corrected = in ActOnSizeofParameterPackExpr() local 848 diagnoseTypo(Corrected, in ActOnSizeofParameterPackExpr() 851 ParameterPack = Corrected.getCorrectionDecl(); in ActOnSizeofParameterPackExpr()
|
D | SemaDeclObjC.cpp | 482 if (TypoCorrection Corrected = CorrectTypo( in ActOnSuperClassOfClassInterface() local 487 diagnoseTypo(Corrected, PDiag(diag::err_undef_superclass_suggest) in ActOnSuperClassOfClassInterface() 489 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>(); in ActOnSuperClassOfClassInterface() 1214 TypoCorrection Corrected = CorrectTypo( in FindProtocolDeclaration() local 1219 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) in FindProtocolDeclaration() 1220 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_protocol_suggest) in FindProtocolDeclaration() 1877 TypoCorrection Corrected = CorrectTypo( in ActOnStartClassImplementation() local 1880 if (Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) { in ActOnStartClassImplementation() 1884 diagnoseTypo(Corrected, in ActOnStartClassImplementation()
|
D | SemaExprObjC.cpp | 1883 if (TypoCorrection Corrected = in HandleExprPropertyRefExpr() local 1888 diagnoseTypo(Corrected, PDiag(diag::err_property_not_found_suggest) in HandleExprPropertyRefExpr() 1890 DeclarationName TypoResult = Corrected.getCorrection(); in HandleExprPropertyRefExpr() 2110 if (TypoCorrection Corrected = CorrectTypo( in getObjCMessageKind() local 2114 if (Corrected.isKeyword()) { in getObjCMessageKind() 2117 diagnoseTypo(Corrected, in getObjCMessageKind() 2121 Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) { in getObjCMessageKind() 2124 diagnoseTypo(Corrected, in getObjCMessageKind()
|
D | SemaDecl.cpp | 566 if (TypoCorrection Corrected = in DiagnoseUnknownTypeName() local 571 if (Corrected.isKeyword()) { in DiagnoseUnknownTypeName() 573 diagnoseTypo(Corrected, PDiag(diag::err_unknown_typename_suggest) << II); in DiagnoseUnknownTypeName() 574 II = Corrected.getCorrectionAsIdentifierInfo(); in DiagnoseUnknownTypeName() 578 diagnoseTypo(Corrected, in DiagnoseUnknownTypeName() 581 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseUnknownTypeName() 582 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && in DiagnoseUnknownTypeName() 584 diagnoseTypo(Corrected, in DiagnoseUnknownTypeName() 592 if (Corrected.getCorrectionSpecifier()) in DiagnoseUnknownTypeName() 593 tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), in DiagnoseUnknownTypeName() [all …]
|
D | SemaExprMember.cpp | 1328 if (TypoCorrection Corrected = S.CorrectTypo( in LookupMemberExpr() local 1331 IV = Corrected.getCorrectionDeclAs<ObjCIvarDecl>(); in LookupMemberExpr() 1333 Corrected, in LookupMemberExpr()
|
D | SemaExpr.cpp | 1882 TypoCorrection Corrected; in DiagnoseEmptyLookup() local 1896 } else if (S && (Corrected = in DiagnoseEmptyLookup() 1899 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseEmptyLookup() 1901 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr; in DiagnoseEmptyLookup() 1902 R.setLookupName(Corrected.getCorrection()); in DiagnoseEmptyLookup() 1906 NamedDecl *ND = Corrected.getCorrectionDecl(); in DiagnoseEmptyLookup() 1908 if (Corrected.isOverloaded()) { in DiagnoseEmptyLookup() 1912 for (NamedDecl *CD : Corrected) { in DiagnoseEmptyLookup() 1926 Corrected.setCorrectionDecl(ND); in DiagnoseEmptyLookup() 1930 Corrected.setCorrectionDecl(ND); in DiagnoseEmptyLookup() [all …]
|
D | SemaTemplate.cpp | 328 if (TypoCorrection Corrected = CorrectTypo( in LookupTemplateName() local 331 Found.setLookupName(Corrected.getCorrection()); in LookupTemplateName() 332 if (Corrected.getCorrectionDecl()) in LookupTemplateName() 333 Found.addDecl(Corrected.getCorrectionDecl()); in LookupTemplateName() 337 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in LookupTemplateName() 338 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && in LookupTemplateName() 340 diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest) in LookupTemplateName() 344 diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name); in LookupTemplateName()
|
D | SemaDeclCXX.cpp | 7515 if (TypoCorrection Corrected = in TryNamespaceTypoCorrection() local 7520 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); in TryNamespaceTypoCorrection() 7521 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && in TryNamespaceTypoCorrection() 7523 S.diagnoseTypo(Corrected, in TryNamespaceTypoCorrection() 7528 S.diagnoseTypo(Corrected, in TryNamespaceTypoCorrection() 7532 R.addDecl(Corrected.getCorrectionDecl()); in TryNamespaceTypoCorrection() 8149 if (TypoCorrection Corrected = CorrectTypo( in BuildUsingDeclaration() local 8156 NamedDecl *ND = Corrected.getCorrectionDecl(); in BuildUsingDeclaration() 8160 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) in BuildUsingDeclaration() 8168 if (Corrected.WillReplaceSpecifier()) { in BuildUsingDeclaration() [all …]
|
D | SemaInit.cpp | 2124 if (TypoCorrection Corrected = SemaRef.CorrectTypo( in CheckDesignatedInitializer() local 2130 Corrected, in CheckDesignatedInitializer() 2133 KnownField = Corrected.getCorrectionDeclAs<FieldDecl>(); in CheckDesignatedInitializer()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/ |
D | NormalizationCorrections.txt | 35 # Field 2: Corrected decomposition
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/ |
D | NormalizationCorrections.txt | 35 # Field 2: Corrected decomposition
|
/external/icu/icu4c/source/data/unidata/ |
D | NormalizationCorrections.txt | 35 # Field 2: Corrected decomposition
|
/external/curl/ |
D | RELEASE-NOTES | 17 o spnego: Corrected miss-placed * in Curl_auth_spnego_cleanup() declaration
|
/external/strace/ |
D | NEWS | 321 * Corrected syscall entries for epoll_pwait, epoll_create, epoll_ctl, 324 * Corrected io_* syscall entries on ARM. 413 * Corrected msgsnd indirect ipccall decoding. 414 * Corrected decoding of 64bit syscalls. 416 * Corrected getsockopt decoding on architectures where 419 * Corrected decoding of epoll_pwait. 421 * Corrected handling of killed threads.
|
/external/strace/debian/ |
D | changelog | 138 + Corrected decoding of 64bit syscalls, closes: #570603 139 + Corrected getsockopt decoding on architectures where 141 + Corrected decoding of epoll_pwait, closes: #513014 174 + Corrected accept(2) decoding, closes: #507573 781 * Corrected error on PowerPC patch that broke other archictectures 841 * Corrected number of parameters for mmap systemcall (bug# 4508)
|
/external/libpng/ |
D | ANNOUNCE | 45 Corrected error in PNG_IMAGE_PNG_SIZE_MAX. This new macro underreported
|
D | CHANGES | 270 Corrected a problem with png_get_tRNS() which returned undefined trans array 273 Corrected png_get_tRNS() again. 281 Corrected some logic errors in png_do_invert_alpha() (Chris Patterson) 284 Corrected a bug in pngpread() introduced in version 99c (Kevin Bracey) 344 Corrected some bugs in the experimental weighted filtering heuristics. 376 Corrected example.c, use of row_pointers in png_write_image(). 379 Corrected several statements that used side effects illegally in pngrutil.c 471 Corrected the typedef for png_free_ptr in png.h (Jesse Jones). 749 Corrected bugs in documentation regarding png_read_row() and png_write_row(). 894 Corrected the definition of PNG_TRANSFORM_INVERT_ALPHA (0x0400 not 0x0200) [all …]
|
/external/vixl/doc/ |
D | changelog.md | 69 + Corrected computation of cache line size.
|
/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/e2fsprogs/debian/ |
D | changelog | 740 * Corrected dumpe2fs's usage message 3109 * Corrected the location of the GPL in copyright file. 3269 * Corrected doc menu entries to point to the real documents' places. 3273 * Corrected typo in Description (Fixes: Bug#18890). 3328 * Corrected link from flushb.8 to undocumented (Closes:Bug#15335,Bug#15660,Bug#15675). 3385 * Corrected compiler-options handling in debian/rules (use CCOPTS instead
|
/external/libvpx/libvpx/ |
D | CHANGELOG | 197 Corrected alt-ref contribution to frame rate for visible updates
|
/external/libmicrohttpd/ |
D | ChangeLog | 274 Corrected some uses of 'int' vs. 'size_t'. -EG/CG 1008 Corrected timeout calculation (s vs. ms). -CG
|
/external/protobuf/ |
D | CHANGES.txt | 482 * Corrected ListFields() signature in Message base class to match what
|