Lines Matching refs:Interface
63 Interface: _Interface,
100 function Interface(input, output, completer, terminal) {
101 if (!(this instanceof Interface)) {
102 return new Interface(input, output, completer, terminal);
122 ObjectSetPrototypeOf(Interface.prototype, _Interface.prototype);
123 ObjectSetPrototypeOf(Interface, _Interface);
134 Interface.prototype.question = function(query, options, cb) {
162 Interface.prototype.question[promisify.custom] = function question(query, options) {
192 * Creates a new `readline.Interface` instance.
210 * @returns {Interface}
213 return new Interface(input, output, completer, terminal);
216 ObjectDefineProperties(Interface.prototype, {
429 Interface.prototype._setRawMode = _Interface.prototype[kSetRawMode];
430 Interface.prototype._onLine = _Interface.prototype[kOnLine];
431 Interface.prototype._writeToOutput = _Interface.prototype[kWriteToOutput];
432 Interface.prototype._addHistory = _Interface.prototype[kAddHistory];
433 Interface.prototype._refreshLine = _Interface.prototype[kRefreshLine];
434 Interface.prototype._normalWrite = _Interface.prototype[kNormalWrite];
435 Interface.prototype._insertString = _Interface.prototype[kInsertString];
436 Interface.prototype._tabComplete = function(lastKeypressWasTab) {
452 Interface.prototype._wordLeft = _Interface.prototype[kWordLeft];
453 Interface.prototype._wordRight = _Interface.prototype[kWordRight];
454 Interface.prototype._deleteLeft = _Interface.prototype[kDeleteLeft];
455 Interface.prototype._deleteRight = _Interface.prototype[kDeleteRight];
456 Interface.prototype._deleteWordLeft = _Interface.prototype[kDeleteWordLeft];
457 Interface.prototype._deleteWordRight = _Interface.prototype[kDeleteWordRight];
458 Interface.prototype._deleteLineLeft = _Interface.prototype[kDeleteLineLeft];
459 Interface.prototype._deleteLineRight = _Interface.prototype[kDeleteLineRight];
460 Interface.prototype._line = _Interface.prototype[kLine];
461 Interface.prototype._historyNext = _Interface.prototype[kHistoryNext];
462 Interface.prototype._historyPrev = _Interface.prototype[kHistoryPrev];
463 Interface.prototype._getDisplayPos = _Interface.prototype[kGetDisplayPos];
464 Interface.prototype._getCursorPos = _Interface.prototype.getCursorPos;
465 Interface.prototype._moveCursor = _Interface.prototype[kMoveCursor];
466 Interface.prototype._ttyWrite = _Interface.prototype[kTtyWrite];
517 Interface,