/third_party/node/test/parallel/ |
D | test-readline-interface.js | 192 const [rli, fi] = getInterface({ terminal: true }); property 203 const [rli, fi] = getInterface({ terminal: true }); property 215 const [rli, fi] = getInterface({ terminal: true, completer }); property 229 const [rli, fi] = getInterface({ terminal: true }); property 241 const [rli, fi] = getInterface({ terminal: true }); property 256 const [rli, fi] = getInterface({ terminal: true }); property 274 terminal: true, property 351 terminal: true, property 380 const [rli, fi] = getInterface({ terminal: true }); property 403 const [rli, fi] = getInterface({ terminal: true, historySize: 2 }); property [all …]
|
D | test-repl-envvars.js | 14 expected: { terminal: true, useColors: true } property 18 expected: { terminal: true, useColors: false } property 22 expected: { terminal: false, useColors: false } property 26 expected: { terminal: true, useColors: false } property 30 expected: { terminal: false, useColors: false } property 34 expected: { terminal: true, useColors: true } property 43 terminal: true, property 53 assert.strictEqual(repl.terminal, expected.terminal,
|
D | test-repl-options.js | 51 terminal: true property 58 assert.strictEqual(r1.terminal, true); 59 assert.strictEqual(r1.useColors, r1.terminal); 70 assert.strictEqual(r1.rli.terminal, true); 71 assert.strictEqual(r1.useColors, r1.rli.terminal); 80 terminal: false, property 93 assert.strictEqual(r2.terminal, false); 106 assert.strictEqual(r2.rli.terminal, false); 126 assert.strictEqual(r4.terminal, !!r4.output.isTTY); 127 assert.strictEqual(r4.useColors, r4.terminal);
|
D | test-repl-preview.js | 171 const hasPreview = repl.terminal && 195 tests({ terminal: false }); // No preview property 196 tests({ terminal: true }); // Preview property 197 tests({ terminal: false, preview: false }); // No preview property 198 tests({ terminal: false, preview: true }); // No preview property 199 tests({ terminal: true, preview: true }); // Preview property
|
D | test-readline.js | 12 terminal: true, property 26 terminal: true, property 38 terminal: true, property 52 terminal: true, property 90 terminal: true, property 126 terminal: true, property
|
D | test-readline-tab-complete.js | 49 terminal: true, property 90 terminal: true, property 122 terminal: true, property
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/base/ |
D | terminal_test.dart | 8 import 'package:flutter_tools/src/base/terminal.dart'; 34 AnsiTerminal terminal; 37 terminal = AnsiTerminal(); 43 terminal.color('output', color), 54 terminal.bolden('output'), 64 terminal.color(terminal.bolden('output'), TerminalColor.blue), 68 terminal.color('non-bold ${terminal.bolden('output')} also non-bold', TerminalColor.blue), 78 terminal.bolden(terminal.color('output', TerminalColor.blue)), 82 terminal.bolden('non-color ${terminal.color('output', TerminalColor.blue)} also non-color'), 92 terminal.color(terminal.color('output', TerminalColor.blue), TerminalColor.magenta), [all …]
|
/third_party/node/deps/npm/node_modules/qrcode-terminal/ |
D | README.md | 13 $ npm install qrcode-terminal 17 var qrcode = require('qrcode-terminal'); 21 To display some data to the terminal just call: 30 If you don't want to display to the terminal but just want to string you can provide a callback: 48 $ npm install -g qrcode-terminal 52 $ qrcode-terminal --help 53 $ qrcode-terminal 'http://github.com' 54 $ echo 'http://github.com' | qrcode-terminal 78 [travis-ci-img]: https://travis-ci.org/gtanner/qrcode-terminal.png 79 [travis-ci-url]: https://travis-ci.org/gtanner/qrcode-terminal [all …]
|
/third_party/rust/crates/is-terminal/ |
D | README.md | 2 <h1><code>is-terminal</code></h1> 5 <strong>Test whether a given stream is a terminal</strong> 9 …ps://github.com/sunfishcode/is-terminal/actions?query=workflow%3ACI"><img src="https://github.com/… 10 …<a href="https://crates.io/crates/is-terminal"><img src="https://img.shields.io/crates/v/is-termin… 11 …<a href="https://docs.rs/is-terminal"><img src="https://docs.rs/is-terminal/badge.svg" alt="docs.r… 15 is-terminal is a simple utility that answers one question: 17 > Is this a terminal? 19 A "terminal", also known as a "tty", is an I/O device which may be interactive 24 function for testing whether a given stream is a terminal, though it accepts 28 stream is a terminal. [all …]
|
D | Cargo.toml | 2 name = "is-terminal" 8 description = "Test whether a given stream is a terminal" 9 documentation = "http://docs.rs/is-terminal" 10 repository = "https://github.com/sunfishcode/is-terminal" 11 keywords = ["terminal", "tty", "isatty"]
|
D | README.OpenSource | 3 "Name": "is-terminal", 8 "Upstream URL": "https://github.com/sunfishcode/is-terminal", 9 … "Description": "A Rust library that provides support for detecting whether a terminal is present."
|
/third_party/toybox/toys/pending/ |
D | init.c | 71 struct termios terminal; in reset_term() local 73 tcgetattr(fd, &terminal); in reset_term() 74 terminal.c_cc[VINTR] = 3; //ctrl-c in reset_term() 75 terminal.c_cc[VQUIT] = 28; /*ctrl-\*/ in reset_term() 76 terminal.c_cc[VERASE] = 127; //ctrl-? in reset_term() 77 terminal.c_cc[VKILL] = 21; //ctrl-u in reset_term() 78 terminal.c_cc[VEOF] = 4; //ctrl-d in reset_term() 79 terminal.c_cc[VSTART] = 17; //ctrl-q in reset_term() 80 terminal.c_cc[VSTOP] = 19; //ctrl-s in reset_term() 81 terminal.c_cc[VSUSP] = 26; //ctrl-z in reset_term() [all …]
|
/third_party/python/Doc/library/ |
D | pty.rst | 1 :mod:`pty` --- Pseudo-terminal utilities 15 The :mod:`pty` module defines operations for handling the pseudo-terminal 17 controlling terminal programmatically. 19 Pseudo-terminal handling is highly platform dependent. This code is mainly 28 Fork. Connect the child's controlling terminal to a pseudo-terminal. Return 31 file descriptor connected to the child's controlling terminal (and also to the 37 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or 44 Spawn a process, and connect its controlling terminal with the current 46 reading from the controlling terminal. It is expected that the process 67 that. If *stdin_read* signals EOF the controlling terminal can no longer [all …]
|
/third_party/node/deps/npm/node_modules/read/lib/ |
D | read.js | 35 var terminal = !!(opts.terminal || output.isTTY) 40 var rlOpts = { input: input, output: output, terminal: terminal } property 99 if (silent && terminal) {
|
/third_party/libuv/docs/src/ |
D | tty.rst | 28 /* Initial/normal terminal mode */ 38 Console virtual terminal mode type: 44 * The console supports handling of virtual terminal sequences 48 /* The console cannot process virtual terminal sequences. (Legacy 76 On Unix this function will determine the path of the fd of the terminal 103 Set the TTY using the specified terminal mode. 122 Controls whether console virtual terminal sequences are processed by libuv 134 Get the current state of whether console virtual terminal sequences are
|
/third_party/flutter/flutter/dev/bots/ |
D | flutter_compact_formatter.dart | 29 /// The terminal escape for green text, or the empty string if this is Windows 30 /// or not outputting to a terminal. 33 /// The terminal escape for red text, or the empty string if this is Windows 34 /// or not outputting to a terminal. 37 /// The terminal escape for yellow text, or the empty string if this is 38 /// Windows or not outputting to a terminal. 41 /// The terminal escape for gray text, or the empty string if this is 42 /// Windows or not outputting to a terminal. 45 /// The terminal escape for bold text, or the empty string if this is 46 /// Windows or not outputting to a terminal. [all …]
|
/third_party/harfbuzz/test/shaping/data/in-house/tests/ |
D | default-ignorables.tests | 3 ../fonts/6677074106f94a2644da6aaaacd5bbd48cbdc7de.ttf::U+0647,U+200D:[terminal=0+0|uni0647.init=0+7… 5 ../fonts/08b4b136f418add748dc641eb4a83033476f1170.ttf::U+0647,U+200D:[terminal=0+0|terminal=0+0|uni…
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/in-house/tests/ |
D | default-ignorables.tests | 3 ../fonts/6677074106f94a2644da6aaaacd5bbd48cbdc7de.ttf;;U+0647,U+200D;[terminal=0+0|uni0647.init=0+7… 5 ../fonts/08b4b136f418add748dc641eb4a83033476f1170.ttf;;U+0647,U+200D;[terminal=0+0|terminal=0+0|uni…
|
/third_party/libwebsockets/lib/roles/h2/ |
D | minihuf.c | 306 int terminal; member 345 state[m].terminal = 0; in main() 373 state[walk].terminal = n++; in main() 428 state[saw].terminal, in main() 429 state[saw].terminal & 0xff); in main()
|
/third_party/libinput/tools/ |
D | make-ptraccel-graphs.sh | 17 set terminal svg enhanced background rgb 'white' 37 set terminal svg enhanced background rgb 'white' 59 set terminal svg enhanced background rgb 'white' 76 set terminal svg enhanced background rgb 'white'
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | terminal.dart | 16 AnsiTerminal get terminal { 52 /// [wrapColumn] specifies. Defaults to true if there is a terminal. To 53 /// determine if there's a terminal, [OutputPreferences] asks the context's 55 /// and asks it if there is a terminal. 61 /// terminal, or to [kDefaultTerminalColumns] if not writing to a terminal. 62 /// To find out if we're writing to a terminal, it tries the context's stdio, 64 /// that doesn't have an idea of the terminal width, then we just use a 73 /// terminal. Defaults to whatever [platform.stdoutSupportsAnsi] says if 74 /// writing to a terminal, and false otherwise.
|
D | logger.dart | 12 import 'terminal.dart'; 47 bool get supportsColor => terminal.supportsColor; 62 /// of the default of red. Colors will not be printed if the output terminal 97 /// of the default of red. Colors will not be printed if the output terminal 171 message = terminal.bolden(message); 172 message = terminal.color(message, color ?? TerminalColor.red); 193 message = terminal.bolden(message); 195 message = terminal.color(message, color); 226 if (terminal.supportsColor) { 291 _error.writeln(terminal.color( [all …]
|
/third_party/node/lib/ |
D | readline.js | 128 function createInterface(input, output, completer, terminal) { argument 129 return new Interface(input, output, completer, terminal); 133 function Interface(input, output, completer, terminal) { argument 135 return new Interface(input, output, completer, terminal); 158 terminal = input.terminal; 211 if (terminal === undefined && !(output === null || output === undefined)) { 212 terminal = !!output.isTTY; 239 this.terminal = !!terminal; 282 if (!this.terminal) { 308 this.terminal = true; [all …]
|
/third_party/glslang/glslang/MachineIndependent/ |
D | IntermTraverse.cpp | 230 if (terminal) in traverse() 231 terminal->traverse(it); in traverse() 245 if (terminal) in traverse() 246 terminal->traverse(it); in traverse()
|
/third_party/icu/docs/ide4c/vscode/ |
D | launch.json | 29 "externalConsole": false, //set to true to see output in an external terminal instead 60 "externalConsole": false, //set to true to see output in an external terminal instead 91 "externalConsole": false, //set to true to see output in an external terminal instead
|