Home
last modified time | relevance | path

Searched refs:nextTick (Results 1 – 25 of 460) sorted by relevance

12345678910>>...19

/third_party/node/benchmark/process/
Dnext-tick-depth-args.js13 process.nextTick(cb4, 3.14, 1024, true, false);
15 process.nextTick(cb3, 512, true, null);
17 process.nextTick(cb2, false, 5.1);
19 process.nextTick(cb1, 0);
27 process.nextTick(cb4, 3.14, 1024, true, false);
29 process.nextTick(cb3, 512, true, null);
31 process.nextTick(cb2, false, 5.1);
33 process.nextTick(cb1, 0);
41 process.nextTick(cb4, 3.14, 1024, true, false);
43 process.nextTick(cb3, 512, true, null);
[all …]
Dnext-tick-exec-args.js15 process.nextTick(onNextTick, i, true, 10, 'test');
17 process.nextTick(onNextTick, i, true, 10);
19 process.nextTick(onNextTick, i, 20);
21 process.nextTick(onNextTick, i);
Dnext-tick-breadth-args.js38 process.nextTick(cb4, 3.14, 1024, true, false);
40 process.nextTick(cb3, 512, true, null);
42 process.nextTick(cb2, false, 5.1);
44 process.nextTick(cb1, 0);
/third_party/node/test/parallel/
Dtest-next-tick.js27 process.nextTick(common.mustCall(function() {
28 process.nextTick(common.mustCall(function() {
29 process.nextTick(common.mustCall());
34 process.nextTick(common.mustCall());
37 process.nextTick(common.mustCall());
41 process.nextTick(function(a, b) {
47 process.nextTick((a, b) => {
53 process.nextTick(function() {
57 process.nextTick(() => {
62 process.nextTick(common.mustNotCall());
Dtest-events-once.js17 process.nextTick(() => {
30 process.nextTick(() => {
43 process.nextTick(() => {
62 process.nextTick(() => {
82 process.nextTick(() => {
97 process.nextTick(() => {
107 process.nextTick(() => {
119 process.nextTick(() => ee.emit('foo'));
147 process.nextTick(() => ac.abort());
154 process.nextTick(() => {
[all …]
Dtest-stream-readable-needReadable.js43 process.nextTick(common.mustCall(() => {
46 process.nextTick(common.mustCall(() => {
62 process.nextTick(common.mustCall(() => {
88 process.nextTick(common.mustCall(() => {
90 process.nextTick(common.mustCall(() => {
92 process.nextTick(common.mustCall(() => {
94 process.nextTick(common.mustCall(() => {
Dtest-event-capture-rejections.js23 process.nextTick(captureRejectionsTwoHandlers);
47 process.nextTick(defaultValue);
68 process.nextTick(globalSetting);
88 process.nextTick(configurable);
110 process.nextTick(globalSettingNoConstructor);
130 process.nextTick(thenable);
156 process.nextTick(avoidLoopOnRejection);
182 process.nextTick(avoidLoopOnError);
208 process.nextTick(thenableThatThrows);
231 process.nextTick(resetCaptureOnThrowInError);
[all …]
Dtest-promises-unhandled-rejections.js229 process.nextTick(function() {
267 process.nextTick(function() {
279 process.nextTick(function() {
398 process.nextTick(function() {
403 process.nextTick(function() {
454 process.nextTick(function() {
456 process.nextTick(function() {
473 process.nextTick(function() {
475 process.nextTick(function() {
493 process.nextTick(function() {
[all …]
Dtest-events-on-async-iterator.js15 process.nextTick(() => {
50 process.nextTick(() => {
74 process.nextTick(() => {
101 process.nextTick(() => {
122 process.nextTick(function() {
155 process.nextTick(function() {
186 process.nextTick(() => {
304 process.nextTick(() => ac.abort());
325 process.nextTick(() => ac.abort());
Dtest-next-tick-fixed-queue-regression.js11 process.nextTick(() => {
14 process.nextTick(common.mustCall());
16 process.nextTick(common.mustCall(() => clearImmediate(immediate)));
Dtest-async-wrap-trigger-id.js11 process.nextTick(() => {
12 process.nextTick(() => {
20 process.nextTick(() => {
Dtest-stream-readable-emittedReadable.js27 process.nextTick(common.mustCall(() => {
30 process.nextTick(common.mustCall(() => {
37 process.nextTick(common.mustCall(() => {
71 process.nextTick(common.mustCall(() => {
Dtest-internal-socket-list-send.js34 process.nextTick(() =>
56 _send: function(msg) { process.nextTick(() => this.emit('disconnect')); }
79 process.nextTick(() =>
104 process.nextTick(() =>
131 process.nextTick(() => {
Dtest-next-tick-errors.js31 process.nextTick(function() {
40 process.nextTick(function() {
46 process.nextTick(val);
Dtest-stream-writable-write-cb-twice.js25 process.nextTick(() => {
41 process.nextTick(cb);
42 process.nextTick(() => {
Dtest-fs-read-stream-err.js33 process.nextTick(common.mustCall(() => {
41 process.nextTick(cb);
51 process.nextTick(() => {
/third_party/node/deps/npm/node_modules/process-nextick-args/
Dindex.js6 module.exports = { nextTick: nextTick }; property
11 function nextTick(fn, arg1, arg2, arg3) { function
20 return process.nextTick(fn);
22 return process.nextTick(function afterTickOne() {
26 return process.nextTick(function afterTickTwo() {
30 return process.nextTick(function afterTickThree() {
39 return process.nextTick(function afterTick() {
/third_party/node/deps/npm/node_modules/asynckit/lib/
Ddefer.js10 var nextTick = typeof setImmediate == 'function'
13 typeof process == 'object' && typeof process.nextTick == 'function'
14 ? process.nextTick
18 if (nextTick)
20 nextTick(fn);
/third_party/node/deps/npm/node_modules/combined-stream/lib/
Ddefer.js10 var nextTick = typeof setImmediate == 'function'
13 typeof process == 'object' && typeof process.nextTick == 'function'
14 ? process.nextTick
18 if (nextTick)
20 nextTick(fn);
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Ddestroy.js14 process.nextTick(emitErrorNT, this, err);
17 process.nextTick(emitErrorNT, this, err);
38 process.nextTick(emitErrorAndCloseNT, _this, err);
41 process.nextTick(emitErrorAndCloseNT, _this, err);
43 process.nextTick(emitCloseNT, _this);
46 process.nextTick(emitCloseNT, _this);
49 process.nextTick(emitCloseNT, _this);
/third_party/node/test/message/
Dnexttick_throw.js25 process.nextTick(function() {
26 process.nextTick(function() {
27 process.nextTick(function() {
28 process.nextTick(function() {
/third_party/node/deps/npm/node_modules/call-limit/
Dcall-limit.js27 process.nextTick(callNext)
28 if (cb) process.nextTick(() => cb.apply(obj, arguments))
32 if (cb) process.nextTick(() => cb.call(obj, err))
33 process.nextTick(callNext)
72 process.nextTick(callNext)
/third_party/node/test/pummel/
Dtest-stream-pipe-multi.js50 process.nextTick(this.emit.bind(this, 'drain'));
58 process.nextTick(this.close.bind(this));
118 process.nextTick(step);
121 process.nextTick(step);
/third_party/node/test/known_issues/
Dtest-vm-timeout-escape-nexttick.js14 const nextTick = process.nextTick; constant
38 nextTick, property
/third_party/node/test/async-hooks/
Dtest-async-local-storage-enable-disable.js10 process.nextTick(() => {
12 process.nextTick(() => {
25 process.nextTick(() => {

12345678910>>...19