Lines Matching refs:Readable

39 module.exports = Readable;
40 Readable.ReadableState = ReadableState;
79 ObjectSetPrototypeOf(Readable.prototype, Stream.prototype);
80 ObjectSetPrototypeOf(Readable, Stream);
221 function Readable(options) {
222 if (!(this instanceof Readable))
223 return new Readable(options);
254 Readable.prototype.destroy = destroyImpl.destroy;
255 Readable.prototype._undestroy = destroyImpl.undestroy;
256 Readable.prototype._destroy = function(err, cb) {
260 Readable.prototype[EE.captureRejectionSymbol] = function(err) {
264 Readable.prototype[SymbolAsyncDispose] = function() {
277 Readable.prototype.push = function(chunk, encoding) {
282 Readable.prototype.unshift = function(chunk, encoding) {
383 Readable.prototype.isPaused = function() {
389 Readable.prototype.setEncoding = function(enc) {
446 Readable.prototype.read = function(n) {
505 // that the Readable class should behave improperly, as streams are
705 Readable.prototype._read = function(n) {
709 Readable.prototype.pipe = function(dest, pipeOpts) {
892 Readable.prototype.unpipe = function(dest) {
927 Readable.prototype.on = function(ev, fn) {
955 Readable.prototype.addListener = Readable.prototype.on;
957 Readable.prototype.removeListener = function(ev, fn) {
973 Readable.prototype.off = Readable.prototype.removeListener;
975 Readable.prototype.removeAllListeners = function(ev) {
1016 Readable.prototype.resume = function() {
1050 Readable.prototype.pause = function() {
1070 Readable.prototype.wrap = function(stream) {
1075 // a static factory method, e.g. Readable.wrap(stream).
1119 Readable.prototype[SymbolAsyncIterator] = function() {
1123 Readable.prototype.iterator = function(options) {
1132 stream = Readable.wrap(stream, { objectMode: true });
1193 ObjectDefineProperties(Readable.prototype, {
1352 Readable._fromList = fromList;
1430 Readable.from = function(iterable, opts) {
1431 return from(Readable, iterable, opts);
1443 Readable.fromWeb = function(readableStream, options) {
1449 Readable.toWeb = function(streamReadable, options) {
1455 Readable.wrap = function(src, options) {
1456 return new Readable({