/third_party/node/lib/internal/streams/ |
D | legacy.js | 66 prependListener(source, 'error', onerror); 67 prependListener(dest, 'error', onerror); 96 function prependListener(emitter, event, fn) { function 99 if (typeof emitter.prependListener === 'function') 100 return emitter.prependListener(event, fn); 114 module.exports = { Stream, prependListener }; field
|
D | readable.js | 40 const { Stream, prependListener } = require('internal/streams/legacy'); 756 prependListener(dest, 'error', onerror);
|
D | writable.js | 692 stream.prependListener('error', onerror);
|
/third_party/node/test/parallel/ |
D | test-event-emitter-prepend.js | 13 myEE.prependListener('foo', common.mustCall(() => assert.strictEqual(m++, 1))); 24 delete EventEmitter.prototype.prependListener; method in delete
|
D | test-stream-events-prepend.js | 8 this.prependListener = undefined;
|
/third_party/node/lib/internal/ |
D | watchdog.js | 32 process.prependListener('newListener', this._onNewListener);
|
/third_party/node/benchmark/net/ |
D | net-c2s-cork.js | 85 Writer.prototype.prependListener = function() {}; method in Writer
|
D | net-wrap-js-stream-passthrough.js | 76 Writer.prototype.prependListener = function() {}; method in Writer
|
D | net-c2s.js | 81 Writer.prototype.prependListener = function() {}; method in Writer
|
D | net-pipe.js | 84 Writer.prototype.prependListener = function() {}; method in Writer
|
D | net-s2c.js | 117 Writer.prototype.prependListener = function() {}; method in Writer
|
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 95 function prependListener(emitter, event, fn) { function 98 …if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); // T… 708 …prependListener(dest, 'error', onerror); // Both close and finish should trigger unpipe, but only …
|
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 89 function prependListener(emitter, event, fn) { function 92 if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); 644 prependListener(dest, 'error', onerror);
|
/third_party/node/lib/ |
D | events.js | 509 EventEmitter.prototype.prependListener = method in EventEmitter 510 function prependListener(type, listener) { 556 this.prependListener(type, _onceWrap(this, type, listener));
|
D | _http_server.js | 493 socket.prependListener = generateSocketListenerWrapper('prependListener'); 954 this.prependListener = net.Socket.prototype.prependListener;
|
D | domain.js | 184 process.prependListener(name, domainUncaughtExceptionClear);
|
/third_party/node/doc/api/ |
D | events.md | 472 `emitter.prependListener()` method can be used as an alternative to add the 478 myEE.prependListener('foo', () => console.log('b')); 519 ### `emitter.prependListener(eventName, listener)` 535 server.prependListener('connection', (stream) => { 1186 Specifically the `prependListener()`, `prependOnceListener()`,
|