| /third_party/typescript_eslint/tests/integration/fixtures/markdown/ |
| D | test.js.snap | 16 "message": "Unexpected console statement.", 19 "ruleId": "no-console", 30 "ruleId": "@typescript-eslint/no-explicit-any", 62 "message": "Unexpected console statement.", 65 "ruleId": "no-console", 73 "message": "Unexpected console statement.", 76 "ruleId": "no-console", 87 "ruleId": "@typescript-eslint/no-explicit-any", 119 "message": "Unexpected console statement.", 122 "ruleId": "no-console", [all …]
|
| D | Doc.md | 3 expected no-console error: 9 console.log('test'); 22 expected no-explicit-any error: 23 expected no-console error: 29 console.log('test'); 42 expected no-console error: 46 console.log('test'); 50 expected no-explicit-any error: 51 expected no-console error: 55 console.log('test'); [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | collisionThisExpressionAndParameter.types | 8 var _this = 10; // Local var. No this capture in x(), so no conflict. 54 var _this = 10; // Local var. No this capture in x(), so no conflict. 58 function inner(_this: number) { // No Error 66 var lamda = (_this: number) => { // No Error 68 >(_this: number) => { // No Error } : (_this: number) => void 72 z1(_this: number) { // No Error 106 declare var console: { 107 >console : { log(msg: any): any; } 118 x => { console.log(this.x); }; 119 >x => { console.log(this.x); } : (x: any) => void [all …]
|
| D | collisionThisExpressionAndParameter.symbols | 8 var _this = 10; // Local var. No this capture in x(), so no conflict. 47 var _this = 10; // Local var. No this capture in x(), so no conflict. 50 function inner(_this: number) { // No Error 58 var lamda = (_this: number) => { // No Error 63 z1(_this: number) { // No Error 92 declare var console: { 93 >console : Symbol(console, Decl(collisionThisExpressionAndParameter.ts, 41, 11), Decl(collisionThis… 104 x => { console.log(this.x); }; 106 >console.log : Symbol(log, Decl(collisionThisExpressionAndParameter.ts, 41, 22)) 107 >console : Symbol(console, Decl(collisionThisExpressionAndParameter.ts, 41, 11), Decl(collisionThis… [all …]
|
| D | exportImportCanSubstituteConstEnumForValue.types | 19 No, 20 >No : DialogResult.No 73 * For some reason javascript code is emitted for this re-exported const enum. 81 * Not exported to show difference. No javascript is emmitted (as expected) 89 * Re-exporting a function type to show difference. No javascript is emmitted (as expected) 107 console.log(value1); 108 >console.log(value1) : void 109 >console.log : (...data: any[]) => void 110 >console : Console 120 console.log(value2); [all …]
|
| D | exportImportCanSubstituteConstEnumForValue.symbols | 19 No, 20 >No : Symbol(ReExportedEnum.No, Decl(exportImportCanSubstituteConstEnumForValue.ts, 5, 15)) 76 * For some reason javascript code is emitted for this re-exported const enum. 84 * Not exported to show difference. No javascript is emmitted (as expected) 92 * Re-exporting a function type to show difference. No javascript is emmitted (as expected) 110 console.log(value1); 111 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 112 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 113 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 122 console.log(value2); [all …]
|
| D | collisionThisExpressionAndParameter.js | 4 var _this = 10; // Local var. No this capture in x(), so no conflict. 21 var _this = 10; // Local var. No this capture in x(), so no conflict. 22 function inner(_this: number) { // No Error 26 var lamda = (_this: number) => { // No Error 29 z1(_this: number) { // No Error 43 declare var console: { 48 x => { console.log(this.x); }; 52 constructor(_this: number); // no error - no code gen 53 z(_this: number); // no error - no code gen 55 declare function f2(_this: number); // no error [all …]
|
| D | forLoopEndingMultilineComments.js | 11 /* eslint-disable no-console */ 15 /* eslint-enable no-console */ 31 /* eslint-disable no-console */ 36 /* eslint-enable no-console */
|
| D | inferenceShouldFailOnEvolvingArrays.symbols | 15 console.log(arg.length); 16 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 17 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 18 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 19 >arg.length : Symbol(String.length, Decl(lib.es5.d.ts, --, --)) 21 >length : Symbol(String.length, Decl(lib.es5.d.ts, --, --)) 32 z = logLength(42); // no error; T is inferred as `any` 47 console.log(arg[0].length); 48 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 49 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) [all …]
|
| D | importsNotUsedAsValues_error.symbols | 27 console.log(a, b); 28 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 29 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 30 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 48 console.log(a, b); 49 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 50 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 51 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 68 console.log(a, b); 69 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) [all …]
|
| /third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
| D | no-confusing-void-expression.md | 1 # Requires expressions of type void to appear in statement position (`no-confusing-void-expression`) 17 console.log(alert('Are you sure?')); 22 // it looks like we are returning the result of `console.error` (fixable) 25 return console.error('Nothing to do!'); 28 console.log('Doing a thing...'); 40 console.log(confirm('Are you sure?')); 50 console.error('Nothing to do!'); 54 console.log('Doing a thing...'); 58 cond && console.log('true'); 59 cond || console.error('false'); [all …]
|
| /third_party/curl/projects/Windows/VC6/src/ |
| D | curl.tmpl | 1 # Microsoft Developer Studio Project File - Name="curl" - Package Owner=<4> 5 # TARGTYPE "Win32 (x86) Console Application" 0x0103 7 CFG=curl - Win32 LIB Debug 16 !MESSAGE NMAKE /f "curl.mak" CFG="curl - Win32 LIB Debug" 20 !MESSAGE "curl - Win32 DLL Debug" (based on "Win32 (x86) Console Application") 21 !MESSAGE "curl - Win32 DLL Debug DLL OpenSSL" (based on "Win32 (x86) Console Application") 22 !MESSAGE "curl - Win32 DLL Debug DLL OpenSSL DLL LibSSH2" (based on "Win32 (x86) Console Applicatio… 23 !MESSAGE "curl - Win32 DLL Debug DLL Windows SSPI" (based on "Win32 (x86) Console Application") 24 !MESSAGE "curl - Win32 DLL Debug DLL Windows SSPI DLL WinIDN" (based on "Win32 (x86) Console Applic… 25 !MESSAGE "curl - Win32 DLL Release" (based on "Win32 (x86) Console Application") [all …]
|
| /third_party/cares/vc/acountry/ |
| D | vc6acountry.dsp | 1 # Microsoft Developer Studio Project File - Name="acountry" - Package Owner=<4> 5 # TARGTYPE "Win32 (x86) Console Application" 0x0103 7 CFG=acountry - Win32 using cares LIB Debug 16 !MESSAGE NMAKE /f "vc6acountry.mak" CFG="acountry - Win32 using cares LIB Debug" 20 !MESSAGE "acountry - Win32 using cares DLL Debug" (based on "Win32 (x86) Console Application") 21 !MESSAGE "acountry - Win32 using cares DLL Release" (based on "Win32 (x86) Console Application") 22 !MESSAGE "acountry - Win32 using cares LIB Debug" (based on "Win32 (x86) Console Application") 23 !MESSAGE "acountry - Win32 using cares LIB Release" (based on "Win32 (x86) Console Application") 33 !IF "$(CFG)" == "acountry - Win32 using cares DLL Debug" 37 # PROP BASE Output_Dir "dll-debug" [all …]
|
| /third_party/cares/vc/adig/ |
| D | vc6adig.dsp | 1 # Microsoft Developer Studio Project File - Name="adig" - Package Owner=<4> 5 # TARGTYPE "Win32 (x86) Console Application" 0x0103 7 CFG=adig - Win32 using cares LIB Debug 16 !MESSAGE NMAKE /f "vc6adig.mak" CFG="adig - Win32 using cares LIB Debug" 20 !MESSAGE "adig - Win32 using cares DLL Debug" (based on "Win32 (x86) Console Application") 21 !MESSAGE "adig - Win32 using cares DLL Release" (based on "Win32 (x86) Console Application") 22 !MESSAGE "adig - Win32 using cares LIB Debug" (based on "Win32 (x86) Console Application") 23 !MESSAGE "adig - Win32 using cares LIB Release" (based on "Win32 (x86) Console Application") 33 !IF "$(CFG)" == "adig - Win32 using cares DLL Debug" 37 # PROP BASE Output_Dir "dll-debug" [all …]
|
| /third_party/cares/vc/ahost/ |
| D | vc6ahost.dsp | 1 # Microsoft Developer Studio Project File - Name="ahost" - Package Owner=<4> 5 # TARGTYPE "Win32 (x86) Console Application" 0x0103 7 CFG=ahost - Win32 using cares LIB Debug 16 !MESSAGE NMAKE /f "vc6ahost.mak" CFG="ahost - Win32 using cares LIB Debug" 20 !MESSAGE "ahost - Win32 using cares DLL Debug" (based on "Win32 (x86) Console Application") 21 !MESSAGE "ahost - Win32 using cares DLL Release" (based on "Win32 (x86) Console Application") 22 !MESSAGE "ahost - Win32 using cares LIB Debug" (based on "Win32 (x86) Console Application") 23 !MESSAGE "ahost - Win32 using cares LIB Release" (based on "Win32 (x86) Console Application") 33 !IF "$(CFG)" == "ahost - Win32 using cares DLL Debug" 37 # PROP BASE Output_Dir "dll-debug" [all …]
|
| /third_party/uboot/u-boot-2020.01/common/ |
| D | Kconfig | 25 Enable recording of boot time in SPL. To make this visible to U-Boot 27 information when SPL finishes and load it when U-Boot proper starts 34 Enable recording of boot time in SPL. To make this visible to U-Boot 36 information when TPL finishes and load it when U-Boot proper starts 44 This shows how long it took U-Boot to go through each stage of the 129 bool "Show boot progress in a board-specific manner" 131 Defining this option allows to add some board-specific code (calling 132 a user-provided function show_boot_progress(int) that enables you to 141 -1 common/cmd_bootm.c Image header has bad magic number 143 -2 common/cmd_bootm.c Image header has bad checksum [all …]
|
| /third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
| D | system_file.js | 7 * http://www.apache.org/licenses/LICENSE-2.0 21 …console.warn("file.move interface mocked in the Previewer. How this interface works on the Preview… 27 …console.warn("file.copy interface mocked in the Previewer. How this interface works on the Preview… 33 …console.warn("file.list interface mocked in the Previewer. How this interface works on the Preview… 37 uri: '[PC Preview]: no file', 38 lastModifiedTime: "[PC Preview]: no file", 39 length: "[PC Preview]: no file", 47 …console.warn("file.get interface mocked in the Previewer. How this interface works on the Previewe… 50 uri: '[PC Preview]: no file', 51 lastModifiedTime: "[PC Preview]: no file", [all …]
|
| /third_party/node/deps/npm/node_modules/nopt/bin/ |
| D | nopt.js | 8 , "num-list": [Number, Array] 9 , "str-list": [String, Array] 10 , "bool-list": [Boolean, Array] 17 , shorthands = { s: [ "--str", "astring" ] 18 , b: [ "--bool" ] 19 , nb: [ "--no-bool" ] 20 , tft: [ "--bool-list", "--no-bool-list", "--bool-list", "true" ] 21 , "?": ["--help"] 22 , h: ["--help"] 23 , H: ["--help"] [all …]
|
| /third_party/node/doc/api/ |
| D | process.md | 3 <!-- introduced_in=v0.10.0 --> 4 <!-- type=global --> 6 <!-- source_link=lib/process.js --> 22 <!-- YAML 24 --> 27 no additional work to schedule. Normally, the Node.js process will exit when 28 there is no work scheduled, but a listener registered on the `'beforeExit'` 43 console.log('Process beforeExit event with code: ', code); 47 console.log('Process exit event with code: ', code); 50 console.log('This message is displayed first.'); [all …]
|
| D | buffer.md | 3 <!--introduced_in=v0.1.90--> 5 > Stability: 2 - Stable 7 <!-- source_link=lib/buffer.js --> 9 `Buffer` objects are used to represent a fixed-length sequence of bytes. Many 20 // Creates a zero-filled Buffer of length 10. 39 const buf5 = Buffer.from([257, 257.5, -255, '1']); 41 // Creates a Buffer containing the UTF-8-encoded bytes for the string 'tést': 46 // Creates a Buffer containing the Latin-1 bytes [0x74, 0xe9, 0x73, 0x74]. 51 <!-- YAML 53 - version: v14.18.0 [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | collisionThisExpressionAndParameter.ts | 4 var _this = 10; // Local var. No this capture in x(), so no conflict. 21 var _this = 10; // Local var. No this capture in x(), so no conflict. 22 function inner(_this: number) { // No Error 26 var lamda = (_this: number) => { // No Error 29 z1(_this: number) { // No Error 43 declare var console: { variable 48 x => { console.log(this.x); }; 52 constructor(_this: number); // no error - no code gen 53 z(_this: number); // no error - no code gen 55 declare function f2(_this: number); // no error [all …]
|
| /third_party/node/test/parallel/ |
| D | test-console.js | 17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 46 ['No such label \'noLabel\' for console.timeLog()'], 47 ['No such label \'noLabel\' for console.timeEnd()'], 49 ['No such label \'default\' for console.timeLog()'], 50 ['No such label \'default\' for console.timeEnd()'], 51 ['Label \'default\' already exists for console.time()'], 52 ['Label \'test\' already exists for console.time()'], 56 console.countReset('noLabel'); 57 console.timeLog('noLabel'); 58 console.timeEnd('noLabel'); [all …]
|
| D | test-stream-readable-async-iterators.js | 65 for await (const d of readable) { // eslint-disable-line no-unused-vars 85 console.log('read without for..await'); 100 (item, i) => assert.strictEqual(item.value, 'hello-' + i), 5)); 103 readable.push('hello-0'); 104 readable.push('hello-1'); 105 readable.push('hello-2'); 106 readable.push('hello-3'); 107 readable.push('hello-4'); 115 console.log('read without for..await deferred'); 128 readable.push('hello-0'); [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/incremental/ |
| D | when-file-with-ambient-global-declaration-file-is-deleted-incremental.js | 3 /// <reference no-default-lib="true"/> 15 declare const console: { log(msg: any): void; }; 21 console.log(Config.value); 27 /a/lib/tsc.js -i 53 console.log(Config.value); 61 …-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface … 62 …-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface … 66 "version": "-6314871648-declare namespace Config { const value: string;} ", 67 "signature": "-6314871648-declare namespace Config { const value: string;} ", 71 "version": "5371023861-console.log(Config.value);", [all …]
|
| /third_party/node/test/sequential/ |
| D | test-deprecation-flags.js | 17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 31 fixtures.path('deprecated-userland-function.js'); 34 fixtures.path('deprecated-userland-class.js'); 37 fixtures.path('deprecated-userland-subclass.js'); 40 const noDep = ['--no-deprecation', depmod]; 41 const traceDep = ['--trace-deprecation', depmod]; 44 console.error('normal: show deprecation warning'); 48 console.log('normal ok'); 52 console.error('--no-deprecation: silence deprecations'); 56 console.log('silent ok'); [all …]
|