/third_party/node/test/parallel/ |
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 55 assert.strictEqual(repl.useColors, expected.useColors,
|
D | test-repl-multiline.js | 8 function run({ useColors }) { field 20 useColors field 40 run({ useColors: true }); property 41 run({ useColors: false }); property
|
D | test-repl-uncaught-exception.js | 9 function run({ command, expected, useColors = false }) { property 20 useColors field 41 useColors: true, property 46 useColors: true, property
|
D | test-repl-options.js | 59 assert.strictEqual(r1.useColors, r1.terminal); 71 assert.strictEqual(r1.useColors, r1.rli.terminal); 81 useColors: true, property 94 assert.strictEqual(r2.useColors, true); 127 assert.strictEqual(r4.useColors, r4.terminal);
|
D | test-repl-reverse-search.js | 83 useColors: true, property 191 useColors: false, property 331 useColors: opts.useColors || false, property
|
D | test-repl-pretty-stack.js | 23 useColors: false, property 63 useColors: true property
|
D | test-repl-editor.js | 32 useColors: false property 91 useColors: false property
|
D | test-repl-pretty-stack-custom-writer.js | 17 useColors: false property
|
D | test-repl-uncaught-exception-async.js | 22 useColors: false, property
|
D | test-repl-load-multiline.js | 37 useColors: false property
|
D | test-repl-function-definition-edge-case.js | 32 useColors: false, property
|
D | test-repl-strict-mode-previews.js | 30 useColors: false, property
|
D | test-repl-colors.js | 21 const repl = new REPLServer({ input: inout, output: inout, useColors: true }); property
|
D | test-repl-pretty-custom-stack.js | 23 useColors: false property
|
D | test-repl-use-global.js | 72 useColors: false, property
|
D | test-repl-mode.js | 83 useColors: false, property
|
D | test-repl-underscore.js | 236 useColors: false, property
|
D | test-repl-top-level-await.js | 63 useColors: true, property
|
/third_party/node/deps/npm/node_modules/debug/src/ |
D | browser.js | 12 exports.useColors = useColors; 44 function useColors() { function 89 var useColors = this.useColors; 91 args[0] = (useColors ? '%c' : '') 93 + (useColors ? ' %c' : ' ') 95 + (useColors ? '%c ' : ' ') 98 if (!useColors) return;
|
D | node.js | 20 exports.useColors = useColors; 73 function useColors() { function 84 this.inspectOpts.colors = this.useColors; 96 this.inspectOpts.colors = this.useColors; 108 var useColors = this.useColors; 110 if (useColors) {
|
D | debug.js | 120 debug.useColors = exports.useColors();
|
/third_party/typescript/tests/baselines/reference/user/ |
D | debug.log | 14 …on type '{ (...args: any[]): void; namespace: string; enabled: boolean; useColors: any; color: str… 15 …on type '{ (...args: any[]): void; namespace: string; enabled: boolean; useColors: any; color: str… 16 …on type '{ (...args: any[]): void; namespace: string; enabled: boolean; useColors: any; color: str… 18 …on type '{ (...args: any[]): void; namespace: string; enabled: boolean; useColors: any; color: str… 20 node_modules/debug/src/common.js(120,35): error TS2339: Property 'useColors' does not exist on type…
|
/third_party/typescript/src/testRunner/parallel/ |
D | host.ts | 436 const savedUseColors = Base.useColors; 437 Base.useColors = !noColors; 440 Base.useColors = savedUseColors; 557 const savedUseColors = Base.useColors; 558 if (noColors) Base.useColors = false; 564 if (noColors) Base.useColors = savedUseColors;
|
/third_party/node/lib/internal/repl/ |
D | utils.js | 265 const result = repl.useColors ? 403 (!repl.useColors || repl.ignoreUndefined)) { 418 maxColumns -= 4 + (repl.useColors ? 0 : 3); 436 const result = repl.useColors ? 584 if (repl.useColors) {
|
/third_party/node/test/pseudo-tty/ |
D | repl-dumb-tty.js | 28 useColors: false property
|