/third_party/node/deps/npm/node_modules/mute-stream/test/ |
D | basic.js | 92 str.isTTY = true 97 t.equal(ms.isTTY, false) 101 t.equal(ms.isTTY, true) 104 str.isTTY = false 105 t.equal(ms.isTTY, false) 108 str.isTTY = true 109 t.equal(ms.isTTY, true) 112 ms.isTTY = false 113 t.equal(ms.isTTY, false) 118 t.equal(ms.isTTY, false) [all …]
|
/third_party/node/test/parallel/ |
D | test-console-clear.js | 11 function doTest(isTTY, check) { argument 13 process.stdout.isTTY = isTTY;
|
D | test-console-tty-colors.js | 8 function check(isTTY, colorMode, expectedColorMode, inspectOptions) { argument 28 stream.isTTY = isTTY;
|
D | test-repl-colors.js | 22 inout.isTTY = true;
|
D | test-console.js | 87 process.stdout.isTTY = false; 91 process.stderr.isTTY = false;
|
D | test-macos-app-sandbox.js | 57 if (process.stdin.isTTY) {
|
D | test-assert-checktag.js | 8 if (process.stdout.isTTY)
|
/third_party/node/test/pseudo-tty/ |
D | test-handle-wrap-isrefed-tty.js | 11 const isTTY = internalBinding('tty_wrap').isTTY; constant 12 strictEqual(isTTY(0), true, 'tty_wrap: stdin is not a TTY');
|
D | test-tty-stream-constructors.js | 12 assert.strictEqual(stream.isTTY, true); 20 assert.strictEqual(stream.isTTY, true);
|
D | ref_keeps_node_running.js | 7 const { TTY, isTTY } = internalBinding('tty_wrap'); 10 strictEqual(isTTY(0), true, 'fd 0 is not a TTY');
|
/third_party/node/deps/npm/node_modules/mute-stream/ |
D | mute.js | 56 return( (this._dest) ? this._dest.isTTY 57 : (this._src) ? this._src.isTTY 63 function setIsTTY (isTTY) { argument 65 value: isTTY,
|
/third_party/node/lib/ |
D | tty.js | 31 const { TTY, isTTY } = internalBinding('tty_wrap'); 44 isTTY(fd); 68 this.isTTY = true; 121 WriteStream.prototype.isTTY = true; method in WriteStream
|
/third_party/node/deps/npm/lib/utils/ |
D | otplease.js | 19 } else if (!process.stdin.isTTY || !process.stdout.isTTY) {
|
/third_party/node/deps/npm/node_modules/set-blocking/ |
D | CHANGELOG.md | 11 * add an isTTY check ([#3](https://github.com/yargs/set-blocking/issues/3)) ([66ce277](https://gith… 16 * stdio/stderr will not be set to blocking if isTTY === false
|
D | index.js | 3 if (stream._handle && stream.isTTY && typeof stream._handle.setBlocking === 'function') {
|
/third_party/node/test/async-hooks/ |
D | test-signalwrap.js | 62 const expectedLen = 2 + (!!process.stdout.isTTY || !!process.stderr.isTTY);
|
D | test-ttywrap.readstream.js | 14 if (!process.stdin.isTTY)
|
/third_party/node/deps/npm/node_modules/gauge/ |
D | index.js | 68 if (options.enabled || (options.enabled == null && this._tty && this._tty.isTTY)) { 122 (writeTo === process.stderr && process.stdout.isTTY && process.stdout) || 123 (writeTo.isTTY && writeTo) ||
|
/third_party/node/benchmark/ |
D | _benchmark_progress.js | 110 if (!process.stderr.isTTY || process.stdout.isTTY) {
|
/third_party/node/lib/internal/bootstrap/switches/ |
D | is_main_thread.js | 126 if (stdout.isTTY) { 138 if (stderr.isTTY) {
|
/third_party/node/doc/api/ |
D | tty.md | 22 the `process.stdout.isTTY` property is `true`: 25 $ node -p -e "Boolean(process.stdout.isTTY)" 27 $ node -p -e "Boolean(process.stdout.isTTY)" | cat 54 ### `readStream.isTTY` 250 ### `writeStream.isTTY`
|
/third_party/node/deps/npm/node_modules/qrcode-terminal/bin/ |
D | qrcode-terminal.js | 21 if (process.stdin.isTTY) {
|
/third_party/node/lib/internal/ |
D | repl.js | 52 const term = 'terminal' in opts ? opts.terminal : process.stdout.isTTY;
|
/third_party/node/deps/npm/node_modules/supports-color/ |
D | index.js | 50 if (stream && !stream.isTTY && forceColor !== true) {
|
/third_party/node/deps/npm/node_modules/colors/lib/system/ |
D | supports-colors.js | 72 if (stream && !stream.isTTY && forceColor !== true) {
|