/third_party/node/lib/internal/streams/ |
H A D | passthrough.js | 32 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 D | pipeline.js | 46 let PassThrough; 313 if (!PassThrough) { 314 PassThrough = require('internal/streams/passthrough'); 322 const pt = new PassThrough({
|
/third_party/node/test/parallel/ |
H A D | test-stream-pipeline.js | 10 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 D | test-readline.js | 3 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 D | test-readline-reopen.js | 9 const { PassThrough } = require('stream'); 11 const input = new PassThrough(); 12 const output = new PassThrough();
|
H A D | test-stream-readable-pause-and-resume.js | 61 const { PassThrough } = require('stream'); 63 const source3 = new PassThrough(); 64 const target3 = new PassThrough();
|
H A D | test-stream2-transform.js | 25 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 D | test-readline-position.js | 4 const { PassThrough } = require('stream'); 13 const input = new PassThrough();
|
H A D | test-stream-readable-no-unneeded-readable.js | 3 const { Readable, PassThrough } = require('stream'); 41 const pt = source.pipe(new PassThrough());
|
H A D | test-repl-use-global.js | 66 const inputStream = new stream.PassThrough(); 67 const outputStream = new stream.PassThrough();
|
H A D | test-stream-pipe-error-handling.js | 25 const { Stream, PassThrough } = require('stream'); 114 const destination = new PassThrough();
|
H A D | test-repl-underscore.js | 225 const inputStream = new stream.PassThrough(); 226 const outputStream = new stream.PassThrough();
|
H A D | test-readline-keys.js | 3 const PassThrough = require('stream').PassThrough; 7 class FakeInput extends PassThrough {}
|
H A D | test-stream-finished.js | 10 PassThrough, 486 const response = new PassThrough(); 548 const p = new PassThrough(); 554 const p = new PassThrough();
|
H A D | test-crypto-authenticated-stream.js | 49 const plain = new stream.PassThrough(); 60 const crypt = new stream.PassThrough();
|
H A D | test-stream-duplex-from.js | 5 const { Duplex, Readable, Writable, pipeline, PassThrough } = require('stream'); 284 const through = new PassThrough({ objectMode: true });
|
H A D | test-stream-readable-async-iterators.js | 8 PassThrough, 439 const passthrough = new PassThrough();
|
/third_party/node/benchmark/net/ |
H A D | net-wrap-js-stream-passthrough.js | 1 // 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 D | get.js | 98 const memoStream = new Collect.PassThrough() 124 const memoStream = new Collect.PassThrough()
|
/third_party/node/test/pummel/ |
H A D | test-fs-watch-system-limit.js | 31 const gatherStderr = new stream.PassThrough();
|
/third_party/skia/include/private/ |
H A D | SkSLSampleUsage.h | 53 static SampleUsage PassThrough() { in PassThrough() function in SkSL::SampleUsage
|
/third_party/node/lib/ |
H A D | stream.js | 102 Stream.PassThrough = require('internal/streams/passthrough');
|
/third_party/skia/src/gpu/effects/ |
H A D | GrSkSLFP.cpp | 125 // 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 D | SkSLAnalysis.cpp | 102 // 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 D | GrFragmentProcessor.h | 401 SkSL::SampleUsage sampleUsage = SkSL::SampleUsage::PassThrough());
|