Home
last modified time | relevance | path

Searched refs:PassThrough (Results 1 - 25 of 29) sorted by relevance

12

/third_party/node/lib/internal/streams/
H A Dpassthrough.js32 module.exports = PassThrough;
35 ObjectSetPrototypeOf(PassThrough.prototype, Transform.prototype);
36 ObjectSetPrototypeOf(PassThrough, Transform);
38 function PassThrough(options) { function
39 if (!(this instanceof PassThrough))
40 return new PassThrough(options);
45 PassThrough.prototype._transform = function(chunk, encoding, cb) {
43 PassThrough.prototype._transform = function(chunk, encoding, cb) { global() class
H A Dpipeline.js46 let PassThrough;
313 if (!PassThrough) {
314 PassThrough = require('internal/streams/passthrough');
322 const pt = new PassThrough({
/third_party/node/test/parallel/
H A Dtest-stream-pipeline.js10 PassThrough,
573 const stream = new PassThrough();
728 const s = new PassThrough();
738 const s = new PassThrough();
748 const s = new PassThrough();
758 const s = new PassThrough();
768 const s = new PassThrough();
784 const s = new PassThrough();
802 const s = new PassThrough();
855 const s = new PassThrough();
[all...]
H A 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();
H A Dtest-readline-reopen.js9 const { PassThrough } = require('stream');
11 const input = new PassThrough();
12 const output = new PassThrough();
H A Dtest-stream-readable-pause-and-resume.js61 const { PassThrough } = require('stream');
63 const source3 = new PassThrough();
64 const target3 = new PassThrough();
H A Dtest-stream2-transform.js25 const { PassThrough, Transform } = require('stream');
54 const pt = new PassThrough();
70 const pt = new PassThrough({ objectMode: true });
92 const pt = PassThrough();
94 assert(pt instanceof PassThrough);
298 const pt = new PassThrough();
330 const pt = new PassThrough();
365 const pt = new PassThrough();
H A Dtest-readline-position.js4 const { PassThrough } = require('stream');
13 const input = new PassThrough();
H A Dtest-stream-readable-no-unneeded-readable.js3 const { Readable, PassThrough } = require('stream');
41 const pt = source.pipe(new PassThrough());
H A Dtest-repl-use-global.js66 const inputStream = new stream.PassThrough();
67 const outputStream = new stream.PassThrough();
H A Dtest-stream-pipe-error-handling.js25 const { Stream, PassThrough } = require('stream');
114 const destination = new PassThrough();
H A Dtest-repl-underscore.js225 const inputStream = new stream.PassThrough();
226 const outputStream = new stream.PassThrough();
H A Dtest-readline-keys.js3 const PassThrough = require('stream').PassThrough;
7 class FakeInput extends PassThrough {}
H A Dtest-stream-finished.js10 PassThrough,
486 const response = new PassThrough();
548 const p = new PassThrough();
554 const p = new PassThrough();
H A Dtest-crypto-authenticated-stream.js49 const plain = new stream.PassThrough();
60 const crypt = new stream.PassThrough();
H A Dtest-stream-duplex-from.js5 const { Duplex, Readable, Writable, pipeline, PassThrough } = require('stream');
284 const through = new PassThrough({ objectMode: true });
H A Dtest-stream-readable-async-iterators.js8 PassThrough,
439 const passthrough = new PassThrough();
/third_party/node/benchmark/net/
H A Dnet-wrap-js-stream-passthrough.js1 // Test the speed of .pipe() with JSStream wrapping for PassThrough streams
5 const { PassThrough } = require('stream');
43 const fakeSocket = new JSStreamWrap(new PassThrough());
/third_party/node/deps/npm/node_modules/cacache/lib/
H A Dget.js98 const memoStream = new Collect.PassThrough()
124 const memoStream = new Collect.PassThrough()
/third_party/node/test/pummel/
H A Dtest-fs-watch-system-limit.js31 const gatherStderr = new stream.PassThrough();
/third_party/skia/include/private/
H A DSkSLSampleUsage.h53 static SampleUsage PassThrough() { in PassThrough() function in SkSL::SampleUsage
/third_party/node/lib/
H A Dstream.js102 Stream.PassThrough = require('internal/streams/passthrough');
/third_party/skia/src/gpu/effects/
H A DGrSkSLFP.cpp125 // modified), then we will have marked the child as PassThrough. The code generator
127 // any coords passed for a PassThrough child match args.fSampleCoords exactly.
338 this->registerChild(std::move(input), SkSL::SampleUsage::PassThrough()); in setInput()
347 this->registerChild(std::move(destColorFP), SkSL::SampleUsage::PassThrough()); in setDestColorFP()
/third_party/skia/src/sksl/
H A DSkSLAnalysis.cpp102 // coords are never modified, we can conservatively turn this into PassThrough
107 fUsage.merge(SampleUsage::PassThrough());
113 // child(inputColor) or child(srcColor, dstColor) -> PassThrough
114 fUsage.merge(SampleUsage::PassThrough());
319 // If AF is enabled, force to use PassThrough mode in GetSampleUsage()
/third_party/skia/src/gpu/
H A DGrFragmentProcessor.h401 SkSL::SampleUsage sampleUsage = SkSL::SampleUsage::PassThrough());

Completed in 10 milliseconds

12