Lines Matching refs:Transform

25629 }(stream_1.Transform);
26530 }(stream_1.Transform);
36900 var Transform = require('cipher-base');
36950 Transform.call(this);
36969 inherits(StreamCipher, Transform);
37055 var Transform = require('cipher-base');
37064 Transform.call(this);
37073 inherits(Decipher, Transform);
37194 var Transform = require('cipher-base');
37203 Transform.call(this);
37211 inherits(Cipher, Transform);
37856 var Transform = require('cipher-base');
37861 Transform.call(this);
37870 inherits(StreamCipher, Transform);
40557 var Transform = require('stream').Transform;
40564 Transform.call(this);
40582 inherits(CipherBase, Transform);
49230 var Transform = require('readable-stream').Transform;
49241 Transform.call(this);
49249 inherits(HashBase, Transform);
71608 var Transform = require('./_stream_transform');
71610 require('inherits')(PassThrough, Transform);
71614 Transform.call(this, options);
72814 module.exports = Transform;
72824 require('inherits')(Transform, Duplex);
72848 function Transform(options) {
72849 if (!(this instanceof Transform)) return new Transform(options);
72887 Transform.prototype.push = function (chunk, encoding) {
72902 Transform.prototype._transform = function (chunk, encoding, cb) {
72906 Transform.prototype._write = function (chunk, encoding, cb) {
72921 Transform.prototype._read = function (n) {
72935 Transform.prototype._destroy = function (err, cb) {
74513 exports.Transform = require('./lib/_stream_transform.js');
78906 Stream.Transform = require('readable-stream/transform.js');
79152 var Transform = require('./_stream_transform');
79160 util.inherits(PassThrough, Transform);
79164 Transform.call(this, options);
80279 module.exports = Transform;
80289 util.inherits(Transform, Duplex);
80313 function Transform(options) {
80314 if (!(this instanceof Transform)) return new Transform(options);
80352 Transform.prototype.push = function (chunk, encoding) {
80367 Transform.prototype._transform = function (chunk, encoding, cb) {
80371 Transform.prototype._write = function (chunk, encoding, cb) {
80386 Transform.prototype._read = function (n) {
80400 Transform.prototype._destroy = function (err, cb) {
81292 exports.Transform = require('./lib/_stream_transform.js');
81298 module.exports = require('./readable').Transform;