/third_party/typescript/src/deprecatedCompat/4.0/ |
D | nodeFactoryTopLevelExports.ts | 12 export const createNodeArray = Debug.deprecate(factory.createNodeArray, factoryDeprecation); 15 …export const createNumericLiteral = Debug.deprecate(factory.createNumericLiteral, factoryDeprecati… 18 …export const createBigIntLiteral = Debug.deprecate(factory.createBigIntLiteral, factoryDeprecation… 21 …export const createStringLiteral = Debug.deprecate(factory.createStringLiteral, factoryDeprecation… 24 …export const createStringLiteralFromNode = Debug.deprecate(factory.createStringLiteralFromNode, fa… 27 …export const createRegularExpressionLiteral = Debug.deprecate(factory.createRegularExpressionLiter… 30 … export const createLoopVariable = Debug.deprecate(factory.createLoopVariable, factoryDeprecation); 33 …ng, flags?: GeneratedIdentifierFlags | undefined) => Identifier = Debug.deprecate(factory.createUn… 36 …export const createPrivateIdentifier = Debug.deprecate(factory.createPrivateIdentifier, factoryDep… 39 export const createSuper = Debug.deprecate(factory.createSuper, factoryDeprecation); [all …]
|
/third_party/node/deps/npm/node_modules/depd/lib/browser/ |
D | index.js | 25 function deprecate (message) { function 29 deprecate._file = undefined 30 deprecate._ignored = true 31 deprecate._namespace = namespace 32 deprecate._traced = false 33 deprecate._warned = Object.create(null) 35 deprecate.function = wrapfunction 36 deprecate.property = wrapproperty 38 return deprecate
|
/third_party/node/deps/npm/node_modules/depd/ |
D | index.js | 112 function deprecate (message) { function 114 log.call(deprecate, message) 117 deprecate._file = file 118 deprecate._ignored = isignored(namespace) 119 deprecate._namespace = namespace 120 deprecate._traced = istraced(namespace) 121 deprecate._warned = Object.create(null) 123 deprecate.function = wrapfunction 124 deprecate.property = wrapproperty 126 return deprecate [all …]
|
D | History.md | 75 * Support `deprecate.property(fn, prop, message)` 85 * Add `deprecate.property(obj, prop, message)` 91 * Add `deprecate.function(fn, message)` 93 * Automatically generate message when omitted from `deprecate()`
|
/third_party/typescript/src/testRunner/unittests/ |
D | debugDeprecation.ts | 13 const deprecation = Debug.deprecate(noop, { 27 const deprecation = Debug.deprecate(noop, { 41 const deprecation = Debug.deprecate(noop, { 54 const deprecation = Debug.deprecate(noop, { 68 const deprecation = Debug.deprecate(noop, { 83 const deprecation = Debug.deprecate(noop, {
|
/third_party/node/test/parallel/ |
D | test-util-deprecate.js | 15 const fn = util.deprecate(() => {}, msg); 24 const fn1 = util.deprecate(() => {}, msg); 25 const fn2 = util.deprecate(() => {}, msg); 36 const fn1 = util.deprecate(() => {}, msg, code); 37 const fn2 = util.deprecate(() => {}, msg, code);
|
/third_party/node/deps/npm/docs/content/commands/ |
D | npm-deprecate.md | 2 title: npm-deprecate 10 npm deprecate <package-spec> <message> 24 npm deprecate my-thing@"< 0.2.3" "critical bug fixed in v0.2.3" 31 npm deprecate my-thing@1.x "1.x is no longer supported" 36 You must be the package owner to deprecate something. See the `owner` and 39 To un-deprecate a package, specify an empty string (`""`) for the `message`
|
D | npm-unpublish.md | 19 Consider using the [`deprecate`](/commands/npm-deprecate) command instead, 128 * [npm deprecate](/commands/npm-deprecate)
|
/third_party/node/lib/ |
D | crypto.js | 34 deprecate, 294 value = deprecate( 334 value: deprecate(createCipher, 340 value: deprecate(createDecipher, 353 get: deprecate(getDefaultEncoding, 355 set: deprecate(setDefaultEncoding,
|
D | dgram.js | 64 const { deprecate, promisify } = require('internal/util'); 1002 get: deprecate(function() { 1005 set: deprecate(function(val) { 1013 get: deprecate(function() { 1016 set: deprecate(function(val) { 1024 get: deprecate(function() { 1027 set: deprecate(function(val) { 1035 get: deprecate(function() { 1038 set: deprecate(function(val) { 1046 get: deprecate(function() { [all …]
|
D | timers.js | 58 deprecate, 356 _unrefActive: deprecate( 361 active: deprecate( 365 unenroll: deprecate( 369 enroll: deprecate(
|
/third_party/typescript/src/deprecatedCompat/4.8/ |
D | mergeDecoratorsAndModifiers.ts | 290 .deprecate({ 321 .deprecate({ 351 .deprecate({ 381 .deprecate({ 417 .deprecate({ 453 .deprecate({ 481 .deprecate({ 509 .deprecate({ 539 .deprecate({ 569 .deprecate({ [all …]
|
/third_party/node/deps/npm/node_modules/agentkeepalive/lib/ |
D | agent.js | 6 const deprecate = require('depd')('agentkeepalive'); constant 41 … deprecate('options.keepAliveTimeout is deprecated, please use options.freeSocketTimeout instead'); 47 …deprecate('options.freeSocketKeepAliveTimeout is deprecated, please use options.freeSocketTimeout … 102 …deprecate('agent.freeSocketKeepAliveTimeout is deprecated, please use agent.options.freeSocketTime… 107 deprecate('agent.timeout is deprecated, please use agent.options.timeout instead'); 112 …deprecate('agent.socketActiveTTL is deprecated, please use agent.options.socketActiveTTL instead');
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
D | attribute.js | 16 var deprecate = require("util-deprecate"); variable 18 var warnOfDeprecatedValueAssignment = deprecate(function () {}, "Assigning an attribute a value con… 19 var warnOfDeprecatedQuotedAssignment = deprecate(function () {}, "Assigning attr.quoted is deprecat… 20 var warnOfDeprecatedConstructor = deprecate(function () {}, "Constructing an Attribute selector wit… 72 get: deprecate(function () { 75 set: deprecate(function () {
|
/third_party/node/deps/npm/node_modules/util-deprecate/ |
D | browser.js | 6 module.exports = deprecate; 26 function deprecate (fn, msg) { function
|
D | node.js | 6 module.exports = require('util').deprecate;
|
/third_party/typescript/src/deprecatedCompat/ |
D | deprecations.ts | 48 … overloads[index] = Debug.deprecate(overloads[index], { ...deprecations[index], name }); 90 deprecate(deprecations: OverloadDeprecations<T>): FinishableOverloadBuilder<T>; method 101 deprecate: deprecations => ({
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 814 Add AVStream.codecpar, deprecate AVStream.codec. 1168 deprecate avpriv_dv_frame_profile2(), which was made public by accident. 1215 Add avio_feof() and deprecate url_feof(). 1904 86070b8 / bc1a985 - Add avfilter_graph_alloc_filter(), deprecate avfilter_open() and 1908 710b0aa / 48a5ada - Add avfilter_init_str(), deprecate avfilter_init_filter(). 1912 835cc0f / fa2a34c - Add avfilter_next(), deprecate av_filter_next(). 1925 Add AVFilterGraph.nb_filters, deprecate AVFilterGraph.filter_count. 1956 av_buffersrc_add_frame(), deprecate av_buffersrc_buffer(). 1958 deprecate av_buffersink_read() and av_buffersink_read_samples(). 1990 e13d5e9 / c1a02e8 - Add av_pix_fmt_get_chroma_sub_sample and deprecate [all …]
|
/third_party/typescript/src/deprecatedCompat/4.2/ |
D | abstractConstructorTypes.ts | 35 .deprecate({ 54 .deprecate({
|
/third_party/typescript/src/deprecatedCompat/4.7/ |
D | typeParameterModifiers.ts | 38 .deprecate({ 60 .deprecate({
|
/third_party/node/deps/npm/tap-snapshots/test/lib/ |
D | npm.js.test.cjs | 25 config, dedupe, deprecate, diff, dist-tag, docs, doctor, 64 dedupe, deprecate, diff, 116 dedupe, deprecate, diff, 166 config, dedupe, deprecate, diff, dist-tag, docs, doctor, 205 dedupe, deprecate, diff, 257 dedupe, deprecate, diff, 309 dedupe, deprecate, diff, 358 config, dedupe, deprecate, diff, dist-tag, docs, doctor, 395 config, dedupe, deprecate, diff, dist-tag, docs, doctor, 432 config, dedupe, deprecate, diff, dist-tag, docs, doctor,
|
/third_party/node/lib/internal/process/ |
D | pre_execution.js | 409 const { deprecate } = require('internal/util'); 435 deprecate(types[name], 459 process.binding = deprecate(process.binding, 463 process._tickCallback = deprecate(process._tickCallback,
|
/third_party/typescript/src/deprecatedCompat/4.6/ |
D | importTypeAssertions.ts | 47 .deprecate({ 75 deprecate({
|
/third_party/node/deps/npm/test/lib/commands/ |
D | deprecate.js | 15 const { npm, deprecate } = await loadMockNpm(t, { 24 await deprecate.completion({ conf: { argv: { remain: argv } } })
|
/third_party/node/test/fixtures/ |
D | deprecated-userland-function.js | 6 util.deprecate(deprecatedFunction, 'deprecatedFunction is deprecated.')();
|