Lines Matching refs:Writable

26174   var ws = new stream_1.Writable({
38307 stream.Writable.call(this);
38316 inherits(Sign, stream.Writable);
38342 stream.Writable.call(this);
38350 inherits(Verify, stream.Writable);
71481 var Writable = require('./_stream_writable');
71487 var keys = objectKeys(Writable.prototype);
71491 if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
71498 Writable.call(this, options);
72980 module.exports = Writable;
73010 Writable.WritableState = WritableState;
73053 require('inherits')(Writable, Stream);
73170 Object.defineProperty(Writable, Symbol.hasInstance, {
73173 if (this !== Writable) return false;
73183 function Writable(options) {
73194 if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);
73210 Writable.prototype.pipe = function () {
73242 Writable.prototype.write = function (chunk, encoding, cb) {
73266 Writable.prototype.cork = function () {
73270 Writable.prototype.uncork = function () {
73279 Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {
73287 Object.defineProperty(Writable.prototype, 'writableBuffer', {
73305 Object.defineProperty(Writable.prototype, 'writableHighWaterMark', {
73499 Writable.prototype._write = function (chunk, encoding, cb) {
73503 Writable.prototype._writev = null;
73505 Writable.prototype.end = function (chunk, encoding, cb) {
73529 Object.defineProperty(Writable.prototype, 'writableLength', {
73622 Object.defineProperty(Writable.prototype, 'destroyed', {
73646 Writable.prototype.destroy = destroyImpl.destroy;
73647 Writable.prototype._undestroy = destroyImpl.undestroy;
73649 Writable.prototype._destroy = function (err, cb) {
74511 exports.Writable = require('./lib/_stream_writable.js');
78904 Stream.Writable = require('readable-stream/writable.js');
79049 var Writable = require('./_stream_writable');
79054 var keys = objectKeys(Writable.prototype);
79058 if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
79065 Writable.call(this, options);
80453 module.exports = Writable;
80488 Writable.WritableState = WritableState;
80526 util.inherits(Writable, Stream);
80644 Object.defineProperty(Writable, Symbol.hasInstance, {
80647 if (this !== Writable) return false;
80657 function Writable(options) {
80665 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
80666 return new Writable(options);
80684 Writable.prototype.pipe = function () {
80717 Writable.prototype.write = function (chunk, encoding, cb) {
80741 Writable.prototype.cork = function () {
80746 Writable.prototype.uncork = function () {
80755 Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {
80771 Object.defineProperty(Writable.prototype, 'writableHighWaterMark', {
80966 Writable.prototype._write = function (chunk, encoding, cb) {
80970 Writable.prototype._writev = null;
80972 Writable.prototype.end = function (chunk, encoding, cb) {
81071 Object.defineProperty(Writable.prototype, 'destroyed', {
81091 Writable.prototype.destroy = destroyImpl.destroy;
81092 Writable.prototype._undestroy = destroyImpl.undestroy;
81094 Writable.prototype._destroy = function (err, cb) {
81290 exports.Writable = require('./lib/_stream_writable.js');