Lines Matching refs:end
188 this.end = options.end;
200 if (this.end === undefined) {
201 this.end = Infinity;
202 } else if (this.end !== Infinity) {
203 validateInteger(this.end, 'end', 0);
205 if (this.start !== undefined && this.start > this.end) {
208 `<= "end" (here: ${this.end})`,
238 MathMin(this.end - this.pos + 1, n) :
239 MathMin(this.end - this.bytesRead + 1, n);
529 // We use end() instead of destroy() because of
531 this.end();
535 WriteStream.prototype.destroySoon = WriteStream.prototype.end;