Lines Matching refs:WriteStream
84 function WriteStream(fd) { class
85 if (!(this instanceof WriteStream))
86 return new WriteStream(fd);
117 ObjectSetPrototypeOf(WriteStream.prototype, net.Socket.prototype);
118 ObjectSetPrototypeOf(WriteStream, net.Socket);
120 WriteStream.prototype.isTTY = true;
122 WriteStream.prototype.getColorDepth = getColorDepth;
124 WriteStream.prototype.hasColors = hasColors;
126 WriteStream.prototype._refreshSize = function() {
144 WriteStream.prototype.cursorTo = function(x, y, callback) {
148 WriteStream.prototype.moveCursor = function(dx, dy, callback) {
152 WriteStream.prototype.clearLine = function(dir, callback) {
156 WriteStream.prototype.clearScreenDown = function(callback) {
160 WriteStream.prototype.getWindowSize = function() {
164 module.exports = { isatty, ReadStream, WriteStream }; field