/third_party/node/test/parallel/ |
D | test-stream-base-prototype-accessors-enumerability.js | 14 const TTY = internalBinding('tty_wrap').TTY; constant 17 assert.strictEqual(TTY.prototype.propertyIsEnumerable('bytesRead'), false); 18 assert.strictEqual(TTY.prototype.propertyIsEnumerable('fd'), false); 20 TTY.prototype.propertyIsEnumerable('_externalStream'), false);
|
D | test-accessor-properties.js | 14 const TTY = internalBinding('tty_wrap').TTY; constant 23 const StreamWrapProto = Object.getPrototypeOf(TTY.prototype); 29 TTY.prototype[property]; // eslint-disable-line no-unused-expressions class
|
D | test-tty-backwards-api.js | 9 const TTY = internalBinding('tty_wrap').TTY = function() {}; constant 11 TTY.prototype = { class
|
/third_party/libuv/docs/src/ |
D | tty.rst | 4 :c:type:`uv_tty_t` --- TTY handle 7 TTY handles represent a stream for the console. 17 TTY handle type. 23 TTY mode type: 69 Initialize a new TTY stream with the given file descriptor. Usually the 78 refers to a TTY. This lets libuv put the tty in non-blocking mode without 85 If reopening the TTY fails, libuv falls back to blocking writes. 90 .. versionchanged:: 1.9.0: the path of the TTY is determined by 94 .. versionchanged:: 1.5.0: trying to initialize a TTY stream with a file 103 Set the TTY using the specified terminal mode. [all …]
|
D | index.rst | 31 * ANSI escape code controlled TTY
|
/third_party/node/test/pseudo-tty/ |
D | test-tty-window-size.js | 7 const { TTY } = internalBinding('tty_wrap'); 8 const getWindowSize = TTY.prototype.getWindowSize; 11 TTY.prototype.getWindowSize = function() { class 12 TTY.prototype.getWindowSize = getWindowSize;
|
D | test-tty-wrap.js | 6 const { TTY } = internalBinding('tty_wrap'); 9 const handle = new TTY(1);
|
D | ref_keeps_node_running.js | 7 const { TTY, isTTY } = internalBinding('tty_wrap'); 12 const handle = new TTY(0);
|
D | test-async-wrap-getasyncid-tty.js | 43 const handle = new tty_wrap.TTY(ttyFd, false);
|
/third_party/node/doc/api/ |
D | tty.md | 1 # TTY chapter 17 When Node.js detects that it is being run with a text terminal ("TTY") 21 whether Node.js is being run within a TTY context is to check that the value of 42 Represents the readable side of a TTY. In normal circumstances 51 A `boolean` that is `true` if the TTY is currently configured to operate as a 86 Represents the writable side of a TTY. In normal circumstances, 150 A `number` specifying the number of columns the TTY currently has. This property 214 `writeStream.getWindowSize()` returns the size of the TTY 217 of columns and rows in the corresponding TTY. 281 A `number` specifying the number of rows the TTY currently has. This property [all …]
|
D | readline.md | 370 a [TTY][] text terminal. See [TTY keybindings][] for a list of key 448 This can be used when collecting input from a TTY stream to retrieve the 456 **If not using a TTY stream for input, use the [`'line'`][] event.** 484 reading input from a TTY stream. The position of cursor determines the 522 The `readline.clearLine()` method clears current line of given [TTY][] stream 540 The `readline.clearScreenDown()` method clears the given [TTY][] stream from 579 treated like a TTY, and have ANSI/VT100 escape codes written to it. 634 ([`process.stdout`][] does this automatically when it is a TTY). 693 given [TTY][] `stream`. 709 If the `stream` is a [TTY][], then it must be in raw mode. [all …]
|
/third_party/node/lib/ |
D | tty.js | 31 const { TTY, isTTY } = internalBinding('tty_wrap'); 54 const tty = new TTY(fd, true, ctx); 92 const tty = new TTY(fd, false, ctx);
|
/third_party/node/deps/npm/node_modules/read/ |
D | README.md | 29 * `terminal` Treat the output as a TTY, whether it is or not. 33 If silent is true, and the input is a TTY, then read will set raw
|
/third_party/node/deps/npm/node_modules/mute-stream/ |
D | README.md | 61 True if the pipe destination is a TTY, or if the incoming pipe source is 62 a TTY.
|
/third_party/flutter/skia/third_party/externals/icu/source/data/coll/ |
D | hu.txt | 42 "&TY<<<TTY/TY"
|
/third_party/skia/third_party/externals/icu/source/data/coll/ |
D | hu.txt | 42 "&TY<<<TTY/TY"
|
/third_party/icu/icu4c/source/data/coll/ |
D | hu.txt | 42 "&TY<<<TTY/TY"
|
/third_party/ltp/testcases/kernel/containers/ |
D | TEST_PLAN.txt | 24 TTY+CONSOLE+DEVPTS NAMESPACES (NEAR FUTURE)
|
/third_party/node/deps/npm/node_modules/term-size/ |
D | readme.md | 5 …ple, in a child process or when piped. This module even works when all the TTY file descriptors ar…
|
/third_party/curl/tests/data/ |
D | test1425 | 43 # this test needs to be a debug build in order to fake it being a TTY output
|
D | test1426 | 43 # this test needs to be a debug build in order to fake it being a TTY output
|
/third_party/node/deps/npm/node_modules/npmlog/ |
D | CHANGELOG.md | 22 when a progress bar is enabled. In `1.x` if you didn't have a TTY the
|
/third_party/mksh/ |
D | check.pl | 1255 open(TTY, "> /dev/tty") || return 0; 1256 print TTY $msg; 1257 close(TTY);
|
/third_party/libuv/docs/src/guide/ |
D | utilities.rst | 368 TTY chapter 390 which enables most TTY formatting, flow-control and other settings. Other_ modes 399 ``grep``. To check if the file descriptor is indeed a TTY, call 411 The final TTY helper is ``uv_tty_get_winsize()`` which is used to get the
|
/third_party/node/test/ |
D | README.md | 34 | `pseudo-tty` | Yes | Tests that require stdin/stdout/stderr to be a TTY. |
|