Home
last modified time | relevance | path

Searched refs:deprecate (Results 1 – 25 of 157) sorted by relevance

1234567

/third_party/typescript/src/deprecatedCompat/
Ddeprecations.ts23 export const createNodeArray = Debug.deprecate(factory.createNodeArray, factoryDeprecation);
26 …export const createNumericLiteral = Debug.deprecate(factory.createNumericLiteral, factoryDeprecati…
29 …export const createBigIntLiteral = Debug.deprecate(factory.createBigIntLiteral, factoryDeprecation…
32 …export const createStringLiteral = Debug.deprecate(factory.createStringLiteral, factoryDeprecation…
35 …export const createStringLiteralFromNode = Debug.deprecate(factory.createStringLiteralFromNode, fa…
38 …export const createRegularExpressionLiteral = Debug.deprecate(factory.createRegularExpressionLiter…
41 … export const createLoopVariable = Debug.deprecate(factory.createLoopVariable, factoryDeprecation);
44 export const createUniqueName = Debug.deprecate(factory.createUniqueName, factoryDeprecation);
47 …export const createPrivateIdentifier = Debug.deprecate(factory.createPrivateIdentifier, factoryDep…
50 export const createSuper = Debug.deprecate(factory.createSuper, factoryDeprecation);
[all …]
/third_party/typescript/src/testRunner/unittests/
DdebugDeprecation.ts11 const deprecation = Debug.deprecate(noop, {
21 const deprecation = Debug.deprecate(noop, {
31 const deprecation = Debug.deprecate(noop, {
40 const deprecation = Debug.deprecate(noop, {
50 const deprecation = Debug.deprecate(noop, {
61 const deprecation = Debug.deprecate(noop, {
/third_party/node/deps/npm/docs/content/cli-commands/
Dnpm-deprecate.md3 title: npm-deprecate
6 # npm-deprecate(1)
12 npm deprecate <pkg>[@<version>] <message>
23 npm deprecate my-thing@"< 0.2.3" "critical bug fixed in v0.2.3"
26 Note that you must be the package owner to deprecate something. See the
29 To un-deprecate a package, specify an empty string (`""`) for the `message`
Dnpm-unpublish.md27 Consider using the `deprecate` command instead, if your intent is to encourage users to upgrade, or…
46 * [npm deprecate](/cli-commands/npm-deprecate)
/third_party/node/lib/
Dcrypto.js34 deprecate
230 value: deprecate(createCipher,
235 value: deprecate(createDecipher,
246 get: deprecate(getDefaultEncoding,
248 set: deprecate(setDefaultEncoding,
264 deprecate(randomBytes, 'crypto.prng is deprecated.', 'DEP0115') :
272 deprecate(randomBytes,
281 deprecate(randomBytes, 'crypto.rng is deprecated.', 'DEP0115') :
Ddgram.js61 const { deprecate } = require('internal/util');
977 get: deprecate(function() {
980 set: deprecate(function(val) {
987 get: deprecate(function() {
990 set: deprecate(function(val) {
997 get: deprecate(function() {
1000 set: deprecate(function(val) {
1007 get: deprecate(function() {
1010 set: deprecate(function(val) {
1017 get: deprecate(function() {
[all …]
Dtimers.js57 deprecate
345 _unrefActive: deprecate(
350 active: deprecate(
354 unenroll: deprecate(
358 enroll: deprecate(
Drepl.js114 deprecate
280 deprecate(() => this.input,
286 deprecate((val) => this.input = val,
296 deprecate(() => this.output,
302 deprecate((val) => this.output = val,
360 get: deprecate(() => rli,
362 set: deprecate((val) => rli = val,
753 get: deprecate(() => self[kBufferedCommandSymbol],
756 set: deprecate((val) => self[kBufferedCommandSymbol] = val,
814 self.parseREPLKeyword = deprecate(
[all …]
Dutil.js60 deprecate,
331 deprecate, property
/third_party/node/test/parallel/
Dtest-util-deprecate.js15 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);
Dtest-util-deprecate-invalid-code.js8 assert.throws(() => util.deprecate(() => {}, 'message', notString), {
/third_party/node/deps/npm/lib/
Ddeprecate.js15 module.exports = deprecate
17 deprecate.usage = 'npm deprecate <pkg>[@<version>] <message>'
19 deprecate.completion = function (opts, cb) {
36 function deprecate ([pkg, msg], opts, cb) { function
43 if (msg == null) throw new Error(`Usage: ${deprecate.usage}`)
/third_party/node/deps/npm/node_modules/util-deprecate/
DREADME.md1 util-deprecate
3 ### The Node.js `util.deprecate()` function with browser support
5 In Node.js, this module simply re-exports the `util.deprecate()` function.
8 of the `util.deprecate()` function is used.
13 A `deprecate()` function is the only thing exposed by this module.
17 exports.foo = deprecate(foo, 'foo() is deprecated, use bar() instead');
Dbrowser.js6 module.exports = deprecate;
26 function deprecate (fn, msg) { function
Dnode.js6 module.exports = require('util').deprecate;
/third_party/ffmpeg/doc/
DAPIchanges814 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/node/lib/internal/bootstrap/
Dpre_execution.js233 const { deprecate } = require('internal/util');
259 deprecate(types[name],
282 process.binding = deprecate(process.binding,
286 process._tickCallback = deprecate(process._tickCallback,
Dnode.js51 const { deprecate } = require('internal/util');
183 process.assert = deprecate(
/third_party/node/deps/npm/node_modules/core-util-is/
Dfloat.patch52 -exports.deprecate = function(fn, msg) {
56 - return exports.deprecate(fn, msg).apply(this, arguments);
518 -exports.p = exports.deprecate(function() {
525 -exports.exec = exports.deprecate(function() {
530 -exports.print = exports.deprecate(function() {
537 -exports.puts = exports.deprecate(function() {
544 -exports.debug = exports.deprecate(function(x) {
549 -exports.error = exports.deprecate(function(x) {
556 -exports.pump = exports.deprecate(function(readStream, writeStream, callback) {
/third_party/node/lib/internal/streams/
Dtransform.js156 get: internalUtil.deprecate(function() {
159 set: internalUtil.deprecate(function(val) {
/third_party/node/test/fixtures/
Ddeprecated-userland-function.js6 util.deprecate(deprecatedFunction, 'deprecatedFunction is deprecated.')();
Ddeprecated.js3 const deprecated = util.deprecate(() => {
Ddeprecated-userland-subclass.js7 const deprecated = util.deprecate(deprecatedClass, 'deprecatedClass is deprecated.');
Ddeprecated-userland-class.js7 const deprecated = util.deprecate(deprecatedClass, 'deprecatedClass is deprecated.');
/third_party/node/lib/internal/fs/
Dstreams.js16 const { deprecate } = require('internal/util');
109 const openReadFs = deprecate(function() {
318 const openWriteFs = deprecate(function() {

1234567