| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaCXXScopeSpec.cpp | 623 if (TypoCorrection Corrected = CorrectTypo( in BuildCXXNestedNameSpecifier() local 628 Corrected.WillReplaceSpecifier() && in BuildCXXNestedNameSpecifier() 629 Name.getAsString() == Corrected.getAsString(getLangOpts()); in BuildCXXNestedNameSpecifier() 632 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) in BuildCXXNestedNameSpecifier() 636 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest) in BuildCXXNestedNameSpecifier() 639 if (Corrected.getCorrectionSpecifier()) in BuildCXXNestedNameSpecifier() 640 SS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), in BuildCXXNestedNameSpecifier() 643 if (NamedDecl *ND = Corrected.getFoundDecl()) in BuildCXXNestedNameSpecifier() 645 Found.setLookupName(Corrected.getCorrection()); in BuildCXXNestedNameSpecifier()
|
| H A D | SemaTemplateVariadic.cpp | 1023 if (TypoCorrection Corrected = in ActOnSizeofParameterPackExpr() local 1026 diagnoseTypo(Corrected, in ActOnSizeofParameterPackExpr() 1029 ParameterPack = Corrected.getCorrectionDecl(); in ActOnSizeofParameterPackExpr()
|
| H A D | SemaExprObjC.cpp | 2105 if (TypoCorrection Corrected = CorrectTypo( in HandleExprPropertyRefExpr() local 2108 DeclarationName TypoResult = Corrected.getCorrection(); in HandleExprPropertyRefExpr() 2113 Corrected.isKeyword() ? nullptr : Corrected.getFoundDecl(); in HandleExprPropertyRefExpr() 2125 diagnoseTypo(Corrected, PDiag(diag::err_property_not_found_suggest) in HandleExprPropertyRefExpr() 2356 if (TypoCorrection Corrected = CorrectTypo( in getObjCMessageKind() local 2359 if (Corrected.isKeyword()) { in getObjCMessageKind() 2362 diagnoseTypo(Corrected, in getObjCMessageKind() 2366 Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) { in getObjCMessageKind() 2369 diagnoseTypo(Corrected, in getObjCMessageKind()
|
| H A D | SemaTemplate.cpp | 515 if (TypoCorrection Corrected = in LookupTemplateName() local 518 if (auto *ND = Corrected.getFoundDecl()) in LookupTemplateName() 524 Found.setLookupName(Corrected.getCorrection()); in LookupTemplateName() 526 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in LookupTemplateName() 527 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && in LookupTemplateName() 529 diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest) in LookupTemplateName() 533 diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name); in LookupTemplateName() 687 if (TypoCorrection Corrected = CorrectTypo(NameInfo, LookupKind, S, &SS, CCC, in diagnoseExprIntendedAsTemplateName() local 689 auto *ND = Corrected.getFoundDecl(); in diagnoseExprIntendedAsTemplateName() 692 if (ND || Corrected.isKeyword()) { in diagnoseExprIntendedAsTemplateName() [all …]
|
| H A D | SemaDeclObjC.cpp | 559 if (TypoCorrection Corrected = CorrectTypo( in ActOnSuperClassOfClassInterface() local 562 diagnoseTypo(Corrected, PDiag(diag::err_undef_superclass_suggest) in ActOnSuperClassOfClassInterface() 564 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>(); in ActOnSuperClassOfClassInterface() 1305 TypoCorrection Corrected = CorrectTypo( in FindProtocolDeclaration() local 1308 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) in FindProtocolDeclaration() 1309 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_protocol_suggest) in FindProtocolDeclaration() 1987 TypoCorrection Corrected = in ActOnStartClassImplementation() local 1990 if (Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) { in ActOnStartClassImplementation() 1994 diagnoseTypo(Corrected, in ActOnStartClassImplementation()
|
| H A D | SemaDecl.cpp | 675 if (TypoCorrection Corrected = in DiagnoseUnknownTypeName() local 680 if (Corrected.isKeyword()) { in DiagnoseUnknownTypeName() 682 diagnoseTypo(Corrected, in DiagnoseUnknownTypeName() 686 II = Corrected.getCorrectionAsIdentifierInfo(); in DiagnoseUnknownTypeName() 690 diagnoseTypo(Corrected, in DiagnoseUnknownTypeName() 695 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseUnknownTypeName() 696 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && in DiagnoseUnknownTypeName() 698 diagnoseTypo(Corrected, in DiagnoseUnknownTypeName() 712 if (Corrected.getCorrectionSpecifier()) in DiagnoseUnknownTypeName() 713 tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), in DiagnoseUnknownTypeName() [all …]
|
| H A D | SemaExprMember.cpp | 1351 if (TypoCorrection Corrected = S.CorrectTypo( in LookupMemberExpr() local 1354 IV = Corrected.getCorrectionDeclAs<ObjCIvarDecl>(); in LookupMemberExpr() 1356 Corrected, in LookupMemberExpr()
|
| H A D | SemaExpr.cpp | 2255 TypoCorrection Corrected; in DiagnoseEmptyLookup() local 2270 (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), in DiagnoseEmptyLookup() 2272 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); in DiagnoseEmptyLookup() 2274 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr; in DiagnoseEmptyLookup() 2275 R.setLookupName(Corrected.getCorrection()); in DiagnoseEmptyLookup() 2279 NamedDecl *ND = Corrected.getFoundDecl(); in DiagnoseEmptyLookup() 2281 if (Corrected.isOverloaded()) { in DiagnoseEmptyLookup() 2285 for (NamedDecl *CD : Corrected) { in DiagnoseEmptyLookup() 2299 Corrected.setCorrectionDecl(ND); in DiagnoseEmptyLookup() 2303 Corrected.setCorrectionDecl(ND); in DiagnoseEmptyLookup() [all …]
|
| H A D | SemaDeclCXX.cpp | 11416 if (TypoCorrection Corrected = in TryNamespaceTypoCorrection() local 11420 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); in TryNamespaceTypoCorrection() 11421 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && in TryNamespaceTypoCorrection() 11423 S.diagnoseTypo(Corrected, in TryNamespaceTypoCorrection() 11428 S.diagnoseTypo(Corrected, in TryNamespaceTypoCorrection() 11432 R.addDecl(Corrected.getFoundDecl()); in TryNamespaceTypoCorrection() 12144 if (TypoCorrection Corrected = in BuildUsingDeclaration() local 12149 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) in BuildUsingDeclaration() 12155 NamedDecl *ND = Corrected.getCorrectionDecl(); in BuildUsingDeclaration() 12166 if (Corrected.WillReplaceSpecifier()) { in BuildUsingDeclaration() [all …]
|
| /netbsd-src/external/bsd/ntp/dist/html/hints/ |
| H A D | changes | 8 - Corrected spelling error
|
| /netbsd-src/lib/libc/softfloat/ |
| H A D | softfloat-history.txt | 39 -- Corrected a mistake that caused borderline underflow cases not to raise
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/wind/ |
| H A D | NormalizationCorrections.txt | 31 # Field 3: Corrected decomposition
|
| /netbsd-src/external/mpl/dhcp/dist/ |
| H A D | RELNOTES | 31 ! Corrected a reference count leak that occurs when the server builds 37 ! Corrected a memory leak that occurs when unpacking a packet that has an 112 - Corrected a buffer overwrite possible when parsing hexadecimal 132 - Corrected buffer pointer logic in dhcrelay functions that manipulate 137 - Corrected unresolved symbol errors building relay_unittests when 165 - Corrected a misuse of the BIND9 DDNS API which caused DDNS updates to be 176 - Corrected a dual-stack mixed-mode issue that occurs when both 184 - Corrected a compilation issue that occurred when building without DNS 188 - Corrected an issue that was causing the server, when running in 224 - Corrected a number of reference counter and zero-length buffer leaks. [all …]
|
| /netbsd-src/crypto/external/cpl/trousers/dist/ |
| H A D | ChangeLog | 282 - Corrected off by 1 errors in PCR index bounds checking. 479 - Corrected Tspi_TPM_PcrExtend manpage to state that the 689 - Corrected the TAG for the TPM command in 711 was causing an invalid free on exit. Corrected that. 717 - Corrected return code in Tspi_Key_UnloadKey02.c testcase. 792 - Corrected typo in tcpa_types.h of pValdationData -> pValidationData
|
| /netbsd-src/external/lgpl3/mpfr/dist/ |
| H A D | ChangeLog | 310 [MPFR manual] Corrected description of mpfr_inp_str. 1059 [Makefile.am] Corrected a note about version-ext.sh in EXTRA_DIST. 1659 [doc/README.dev] Corrected "To make a release". 1719 Corrected spelling mistake found by codespell 2.2.0 2257 Corrected comment about the ".POSIX" line in all Makefile.am files. 2393 [tests/tpow.c] Corrected messages. 2544 Corrected style (spurious space before comma). 2749 [doc/mpfr.texi] Corrected garbled mpfr_set* description. 2809 [doc/mpfr.texi] Corrected latest change (typography). 2993 [src/exceptions.c] Corrected latest comment. [all …]
|
| /netbsd-src/crypto/dist/ipsec-tools/ |
| H A D | NEWS | 51 o Corrected modecfg option syntax
|
| /netbsd-src/external/gpl3/gdb/dist/sim/erc32/ |
| H A D | ChangeLog-2021 | 1273 * Corrected STDFQ when qne = 0 (again!). The ftt is set to sequence_error 1279 * Corrected STDFQ when qne = 0. Now, a trap is immidiately generated but 1282 * Corrected JMPL and RETT timing (these instructions takes two cycles). 1310 * Corrected MEC timer operation; scalers now divide the frequency by
|
| /netbsd-src/sys/arch/vax/vax/ |
| H A D | intvec.S | 106 INTVEC(cmrerr, ISTACK) # Corrected Memory Read, 54
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/ |
| H A D | NEWS | 421 o Corrected fix for CVE-2013-0169 464 o Corrected fix for CVE-2011-4619 497 o Corrected fix for security issue CVE-2010-3864.
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/ |
| H A D | ChangeLog-2000 | 1222 symtab.h target.c tm-mips.h xm-sun4sol2.h: Corrected 1886 Corrected comment spelling dependant->dependent. 1887 * corelow.c (default_core_sniffer): Corrected comment 1889 * cp-valprint.c (cp_print_value_fields): Corrected 1891 * d10v-tdep.c dbxread.c: Corrected comment spelling 1893 * defs.h: Corrected spelling, meant 64, not 32, in comment. 1894 * dst.h eval.c event-loop.c: Corrected comment spelling. 1895 * event-top.c gdb-events.sh: Corrected comment spelling. 1896 * gdbarch.c: Corrected comment spelling. 1897 * gdbarch.h gdbarch.sh: Corrected comment spelling, [all …]
|
| /netbsd-src/external/gpl3/gdb.old/dist/gdb/ |
| H A D | ChangeLog-2000 | 1222 symtab.h target.c tm-mips.h xm-sun4sol2.h: Corrected 1886 Corrected comment spelling dependant->dependent. 1887 * corelow.c (default_core_sniffer): Corrected comment 1889 * cp-valprint.c (cp_print_value_fields): Corrected 1891 * d10v-tdep.c dbxread.c: Corrected comment spelling 1893 * defs.h: Corrected spelling, meant 64, not 32, in comment. 1894 * dst.h eval.c event-loop.c: Corrected comment spelling. 1895 * event-top.c gdb-events.sh: Corrected comment spelling. 1896 * gdbarch.c: Corrected comment spelling. 1897 * gdbarch.h gdbarch.sh: Corrected comment spelling, [all …]
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc4515.txt | 531 value" with "an assertion value". Corrected the description of this
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | FSFChangeLog.10 | 1633 * 1750a.c (add_1_to_mem): Corrected. 1716 * 1750a.md (movstrqi): Corrected. 1723 * 1750a.c (movcnt_regno_adjust): Corrected. 1725 (b_mode_operand): Corrected. 1727 (print_operand_address): Corrected case of 'Q' output modifier. 4465 * 1750a.md (pattern for HImode PSHM): Corrected. 4466 (trunchiqi2, zero_extendqihi2, extendhftqf2): Corrected. 4467 (pattern for movhi of CONST_INT to REG): Corrected. 4468 (divmodqi pattern for DISN): Corrected. 4469 (all shift patterns): Corrected. [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | FSFChangeLog.10 | 1633 * 1750a.c (add_1_to_mem): Corrected. 1716 * 1750a.md (movstrqi): Corrected. 1723 * 1750a.c (movcnt_regno_adjust): Corrected. 1725 (b_mode_operand): Corrected. 1727 (print_operand_address): Corrected case of 'Q' output modifier. 4465 * 1750a.md (pattern for HImode PSHM): Corrected. 4466 (trunchiqi2, zero_extendqihi2, extendhftqf2): Corrected. 4467 (pattern for movhi of CONST_INT to REG): Corrected. 4468 (divmodqi pattern for DISN): Corrected. 4469 (all shift patterns): Corrected. [all …]
|
| /netbsd-src/external/gpl2/groff/dist/contrib/mm/ |
| H A D | ChangeLog | 311 * Corrected line length for figure caption (FG and friends)
|