Home
last modified time | relevance | path

Searched refs:PassThrough (Results 1 – 25 of 127) sorted by relevance

123456

/third_party/node/lib/internal/streams/
Dpassthrough.js32 module.exports = PassThrough;
35 ObjectSetPrototypeOf(PassThrough.prototype, Transform.prototype);
36 ObjectSetPrototypeOf(PassThrough, Transform);
38 function PassThrough(options) { class
39 if (!(this instanceof PassThrough))
40 return new PassThrough(options);
45 PassThrough.prototype._transform = function(chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/isstream/
Dtest.js77 test(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
83 test(true, 'ReadableStream10.PassThrough', new (ReadableStream10.PassThrough)())
89 test(true, 'ReadableStream11.PassThrough', new (ReadableStream11.PassThrough)())
97 testReadable(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
103 testReadable(true, 'ReadableStream10.PassThrough', new (ReadableStream10.PassThrough)())
109 testReadable(true, 'ReadableStream11.PassThrough', new (ReadableStream11.PassThrough)())
117 testWritable(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
123 testWritable(true, 'ReadableStream10.PassThrough', new (ReadableStream10.PassThrough)())
129 testWritable(true, 'ReadableStream11.PassThrough', new (ReadableStream11.PassThrough)())
137 testDuplex(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
[all …]
/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_passthrough.js26 module.exports = PassThrough;
30 require('inherits')(PassThrough, Transform);
32 function PassThrough(options) { class
33 if (!(this instanceof PassThrough)) return new PassThrough(options);
37 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/
D_stream_passthrough.js26 module.exports = PassThrough;
35 util.inherits(PassThrough, Transform);
37 function PassThrough(options) { class
38 if (!(this instanceof PassThrough))
39 return new PassThrough(options);
44 PassThrough.prototype._transform = function(chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/
D_stream_passthrough.js28 module.exports = PassThrough;
37 util.inherits(PassThrough, Transform);
39 function PassThrough(options) { class
40 if (!(this instanceof PassThrough)) return new PassThrough(options);
45 PassThrough.prototype._transform = function (chunk, encoding, cb) {
/third_party/node/test/parallel/
Dtest-stream-transform-objectmode-falsey-value.js27 const PassThrough = stream.PassThrough; constant
29 const src = new PassThrough({ objectMode: true });
30 const tx = new PassThrough({ objectMode: true });
31 const dest = new PassThrough({ objectMode: true });
Dtest-stream-pipeline.js10 PassThrough,
500 const stream = new PassThrough();
655 const s = new PassThrough();
665 const s = new PassThrough();
675 const s = new PassThrough();
685 const s = new PassThrough();
695 const s = new PassThrough();
711 const s = new PassThrough();
729 const s = new PassThrough();
782 const s = new PassThrough();
[all …]
Dtest-readline.js3 const { PassThrough } = require('stream');
10 const input = new PassThrough();
24 const input = new PassThrough();
36 const input = new PassThrough();
50 const input = new PassThrough();
88 const input = new PassThrough();
124 const input = new PassThrough();
Dtest-readline-undefined-columns.js5 const PassThrough = require('stream').PassThrough; constant
13 const iStream = new PassThrough();
14 const oStream = new PassThrough();
Dtest-stream-pipe-flow.js4 const { Readable, Writable, PassThrough } = require('stream');
42 .pipe(new PassThrough({ objectMode: true, highWaterMark: 2 }))
43 .pipe(new PassThrough({ objectMode: true, highWaterMark: 2 }));
75 .pipe(new PassThrough({ objectMode: true, highWaterMark: 2 }));
Dtest-repl-pretty-stack-custom-writer.js3 const { PassThrough } = require('stream');
8 const input = new PassThrough();
9 const output = new PassThrough();
Dtest-stream-await-drain-writers-in-synchronously-recursion-write.js3 const { PassThrough } = require('stream');
5 const encode = new PassThrough({
9 const decode = new PassThrough({
Dtest-stream-pipe-same-destination-twice.js8 const { PassThrough, Writable } = require('stream');
11 const passThrough = new PassThrough();
38 const passThrough = new PassThrough();
58 const passThrough = new PassThrough();
Dtest-readline-emit-keypress-events.js9 const PassThrough = require('stream').PassThrough; constant
10 const stream = new PassThrough();
Dtest-repl-uncaught-exception-evalcallback.js5 const { PassThrough } = require('stream');
6 const input = new PassThrough();
7 const output = new PassThrough();
Dtest-wrap-js-stream-duplex.js6 const { PassThrough } = require('stream');
10 const wrap = new StreamWrap(new PassThrough());
18 const wrap = new StreamWrap(new PassThrough());
/third_party/node/deps/npm/node_modules/mute-stream/test/
Dbasic.js10 function PassThrough () { class
15 PassThrough.prototype = Object.create(Stream.prototype, {
17 value: PassThrough
45 var str = new PassThrough
68 var str = new PassThrough
91 var str = new PassThrough
132 var str = new PassThrough
151 var str = new PassThrough
179 var str = new PassThrough

123456