HomeSort by: relevance | last modified time | path
    Searched refs:deprecation (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/util/
fix-deprecation 69 my $deprecation = '';
86 $deprecation = "OSSL_DEPRECATEDIN_$version $3;$5";
88 print STDERR "DEBUG: changed to:\n$deprecation\n"
100 if ($deprecation) {
109 print $deprecation;
  /src/crypto/external/bsd/openssl/dist/util/
fix-deprecation 69 my $deprecation = '';
86 $deprecation = "OSSL_DEPRECATEDIN_$version $3;$5";
88 print STDERR "DEBUG: changed to:\n$deprecation\n"
100 if ($deprecation) {
109 print $deprecation;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
aliasthis.d 159 * "Deprecation: alias this `fullyqualified.aggregate.__anonymous` is deprecated"
172 import dmd.errors : deprecation, Classification;
186 deprecation(loc, "`alias %s this` is deprecated - %s",
189 deprecation(loc, "`alias %s this` is deprecated",
193 ti.printInstantiationTrace(Classification.deprecation);
errors.d 27 deprecation = Color.brightCyan, /// for deprecations
66 return &deprecation;
207 * Print a deprecation message, may increase the global warning or error count
210 * loc = location of deprecation
215 extern (C++) void deprecation(const ref Loc loc, const(char)* format, ...)
223 pragma(printf) extern (C++) void deprecation(const ref Loc loc, const(char)* format, ...)
232 * Print additional details about a deprecation message.
233 * Doesn't increase the error count, or print an additional deprecation prefix.
235 * loc = location of deprecation
391 * Same as $(D deprecation), but takes a va_list parameter, and optionally additional message prefixes
    [all...]
errors.h 25 // Print a warning, deprecation, or error, accepts printf-like format specifiers.
28 D_ATTRIBUTE_FORMAT(2, 3) void deprecation(const Loc& loc, const char *format, ...);
chkformat.d 87 deprecation(loc, "format specifier `\"%.*s\"` is invalid", cast(int)slice.length, slice.ptr);
99 deprecation(loc, "more format specifiers than %d arguments", cast(int)n);
109 deprecation(arg.loc, "%sargument `%s` for format specification `\"%.*s\"` must be `%s`, not `%s`",
288 deprecation(loc, "format specifier `\"%.*s\"` is invalid", cast(int)slice.length, slice.ptr);
359 deprecation(loc, "format specifier `\"%.*s\"` is invalid", cast(int)slice.length, slice.ptr);
368 deprecation(loc, "more format specifiers than %d arguments", cast(int)n);
376 deprecation(arg.loc, "%sargument `%s` for format specification `\"%.*s\"` must be `%s`, not `%s`",
504 deprecation(loc, "format specifier `\"%.*s\"` is invalid", cast(int)slice.length, slice.ptr);
dsymbol.h 184 DeprecatedDeclaration *depdecl; // customized deprecation message
196 void deprecation(const Loc &loc, const char *format, ...);
197 void deprecation(const char *format, ...);
dsymbol.d 255 DeprecatedDeclaration depdecl; // customized deprecation message
352 final void deprecation(const ref Loc loc, const(char)* format, ...)
360 final void deprecation(const(char)* format, ...)
388 pragma(printf) final void deprecation(const ref Loc loc, const(char)* format, ...)
396 pragma(printf) final void deprecation(const(char)* format, ...)
428 deprecation(loc, "is deprecated - %s", message);
430 deprecation(loc, "is deprecated");
433 ti.printInstantiationTrace(Classification.deprecation);
435 ti.printInstantiationTrace(Classification.deprecation);
iasmgcc.d 93 deprecation(arg.loc, "`%s` must be surrounded by parentheses", arg.toChars());
parse.d 217 error("there is only one deprecation attribute allowed for module declaration");
713 // The deprecation period is longer than usual as `body`
716 deprecation("Usage of the `body` keyword is deprecated. Use `do` instead.");
2333 deprecation("`immutable` postblit is deprecated. Please use an unqualified postblit.");
2335 deprecation("`shared` postblit is deprecated. Please use an unqualified postblit.");
2337 deprecation("`const` postblit is deprecated. Please use an unqualified postblit.");
2691 * After deprecation period (2.108), remove all code in the version(all) block.
2697 deprecation("`new` allocator with non-empty parameter list is deprecated");
2701 deprecation("`new` allocator with function definition is deprecated");
4422 // The deprecation period is longer than usual as `body
    [all...]
dmodule.d 1130 md.msg = semanticString(sc, md.msg, "deprecation message");
1186 * Print deprecation warning if we're deprecated, when
1203 deprecation(loc, "is deprecated - %.*s", cast(int)slice.length, slice.ptr);
1207 deprecation(loc, "is deprecated");
statement.h 118 void deprecation(const char *format, ...);
blockexit.d 154 s.deprecation("switch case fallthrough - use 'goto %s;' if intended", gototype);
semantic3.d 385 // The deprecation period is longer than usual as dual-context
391 funcdecl.deprecation("function requires a dual-context, which is deprecated");
393 ti.printInstantiationTrace(Classification.deprecation);
1414 // transition. Remove this after the usual deprecation period
1434 ctor.loc.deprecation("`%s` has stricter attributes than its destructor (`%s`)", ctor.toPrettyChars(), ob.peekChars());
dsymbolsem.d 2124 deprecation(ed.loc, "`scope` as a type constraint is deprecated. Use `scope` at the usage site.");
3588 deprecation(funcdecl.loc, "`%s` is overriding the deprecated method `%s`",
3599 deprecation(funcdecl.loc, "`@__future` base class method `%s` is being overridden by `%s`; rename the latter", fdv.toPrettyChars(), funcdecl.toPrettyChars());
3843 deprecation(funcdecl.loc,
3848 deprecation(funcdecl.loc,
4262 deprecation(scd.loc, "`%sstatic` constructor can only be of D linkage", s);
4360 deprecation(sdd.loc, "`%sstatic` destructor can only be of D linkage", s);
4687 deprecation(sd.loc, "`scope` as a type constraint is deprecated. Use `scope` at the usage site.");
5356 deprecation(cldec.loc, "`scope` as a type constraint is deprecated. Use `scope` at the usage site.");
semantic2.d 436 f2.deprecation("cannot overload `extern(%s)` function at %s",
statement.d 143 final void deprecation(const(char)* format, ...)
169 pragma(printf) final void deprecation(const(char)* format, ...)
lexer.d 2600 final void deprecation(const(char)* format, ...)
expression.h 98 void deprecation(const char *format, ...) const;
statementsem.d 956 fs.deprecation("foreach: loop index implicitly converted from `size_t` to `%s`",
1365 fs.deprecation("cannot use `foreach_reverse` with a delegate");
2838 rs.deprecation("`return` statements cannot be in `scope(failure)` bodies.");
clone.d 1479 deprecation(sd.loc, "`struct %s` implicitly-generated postblit hides copy constructor.", sd.toChars);
escape.d 886 deprecation(ee.loc, "slice of static array temporary returned by `%s` assigned to longer lived variable `%s`",
1065 // 'featureState' tells us whether to emit an error or a deprecation,
1122 // Otherwise, issue a deprecation
1285 // 'featureState' tells us whether to emit an error or a deprecation,
dcast.d 1765 e.deprecation("casting from %s to %s is deprecated", e.type.toChars(), t.toChars());
3678 ue.deprecation("integral promotion not done for `%s`, remove '-revert=intpromote' switch or `%scast(int)(%s)`",
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
lang-c++ 24 /* Avoid deprecation warnings from g++ 3.1 or newer. */
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
stopwatch.d 26 gone through the deprecation cycle and have been fully removed, then

Completed in 70 milliseconds

1 2