| /third_party/glslang/Test/ |
| D | hlsl.type.type.conversion.valid.frag | 46 float var1 = float2(zeros2);// warning X3206: implicit truncation of vector type 47 float var2 = float3(zeros3);// warning X3206: implicit truncation of vector type 48 float var3 = float4(zeros4);// warning X3206: implicit truncation of vector type 49 float var4 = float2x2(zeros4);// warning X3206: implicit truncation of vector type 50 float var5 = float2x3(zeros6);// warning X3206: implicit truncation of vector type 51 float var6 = float2x4(zeros8);// warning X3206: implicit truncation of vector type 52 float var7 = float3x2(zeros6);// warning X3206: implicit truncation of vector type 53 float var8 = float3x3(zeros9);// warning X3206: implicit truncation of vector type 54 float var9 = float3x4(zeros12);// warning X3206: implicit truncation of vector type 55 float var10 = float4x2(zeros8);// warning X3206: implicit truncation of vector type [all …]
|
| D | hlsl.type.type.conversion.all.frag | 46 float var1 = float2(zeros2);// warning X3206: implicit truncation of vector type 47 float var2 = float3(zeros3);// warning X3206: implicit truncation of vector type 48 float var3 = float4(zeros4);// warning X3206: implicit truncation of vector type 49 float var4 = float2x2(zeros4);// warning X3206: implicit truncation of vector type 50 float var5 = float2x3(zeros6);// warning X3206: implicit truncation of vector type 51 float var6 = float2x4(zeros8);// warning X3206: implicit truncation of vector type 52 float var7 = float3x2(zeros6);// warning X3206: implicit truncation of vector type 53 float var8 = float3x3(zeros9);// warning X3206: implicit truncation of vector type 54 float var9 = float3x4(zeros12);// warning X3206: implicit truncation of vector type 55 float var10 = float4x2(zeros8);// warning X3206: implicit truncation of vector type [all …]
|
| /third_party/node/lib/internal/process/ |
| D | warning.js | 88 function doEmitWarning(warning) { argument 89 process.emit('warning', warning); 92 function onWarning(warning) { argument 93 if (!(warning instanceof Error)) return; 94 const isDeprecation = warning.name === 'DeprecationWarning'; 99 if (warning.code) 100 msg += `[${warning.code}] `; 101 if (trace && warning.stack) { 102 msg += `${warning.stack}`; 105 typeof warning.toString === 'function' ? [all …]
|
| /third_party/mesa3d/src/gallium/frontends/wgl/ |
| D | stw_nopfuncs.c | 46 warning(const char *name) in warning() function 55 warning(__func__); in nop_glBindMultiTextureEXT() 61 warning(__func__); in nop_glColor3hNV() 67 warning(__func__); in nop_glColor3hvNV() 73 warning(__func__); in nop_glColor4hNV() 79 warning(__func__); in nop_glColor4hvNV() 85 warning(__func__); in nop_glDisableClientStateIndexedEXT() 91 warning(__func__); in nop_glEnableClientStateIndexedEXT() 97 warning(__func__); in nop_glFogCoordhNV() 103 warning(__func__); in nop_glFogCoordhvNV() [all …]
|
| /third_party/curl/lib/ |
| D | warnless.c | 72 # pragma warning(push) in curlx_ultous() 73 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_ultous() 80 # pragma warning(pop) in curlx_ultous() 91 # pragma warning(push) in curlx_ultouc() 92 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_ultouc() 99 # pragma warning(pop) in curlx_ultouc() 110 # pragma warning(push) in curlx_uztoso() 111 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_uztoso() 113 # pragma warning(push) in curlx_uztoso() 114 # pragma warning(disable:4310) /* cast truncates constant value */ in curlx_uztoso() [all …]
|
| /third_party/node/deps/v8/tools/gcmole/ |
| D | test-expectations.txt | 1 tools/gcmole/gcmole-test.cc:30:10: warning: Possibly dead variable. 4 tools/gcmole/gcmole-test.cc:48:3: warning: Possible problem with evaluation order. 7 tools/gcmole/gcmole-test.cc:60:3: warning: Possible problem with evaluation order. 10 tools/gcmole/gcmole-test.cc:85:7: warning: Possible problem with evaluation order. 13 tools/gcmole/gcmole-test.cc:87:7: warning: Possible problem with evaluation order. 16 tools/gcmole/gcmole-test.cc:131:14: warning: Possible problem with evaluation order. 19 tools/gcmole/gcmole-test.cc:133:14: warning: Possible problem with evaluation order. 22 tools/gcmole/gcmole-test.cc:154:14: warning: Possible problem with evaluation order. 25 tools/gcmole/gcmole-test.cc:164:3: warning: Possibly dead variable. 28 tools/gcmole/gcmole-test.cc:172:3: warning: Possibly dead variable. [all …]
|
| D | gcmole-test.cc | 47 // Should cause warning. in TestTwoArguments() 59 // Should cause warning. in TestTwoSizeTArguments() 84 // Should cause warning. in TestMethodCall() 86 // Should cause warning. in TestMethodCall() 93 // Should not cause warning. in TestOperatorCall() 100 // Should cause warning. in TestFollowingTemplates() 130 // Should cause warning. in TestFollowingVirtualFunctions() 132 // Should cause warning. in TestFollowingVirtualFunctions() 153 // Should cause warning. in TestFollowingStaticFunctions() 163 // Should cause warning. in TestDeadVarAnalysis() [all …]
|
| /third_party/python/Doc/library/ |
| D | warnings.rst | 1 :mod:`warnings` --- Warning control 5 :synopsis: Issue warning messages and control their disposition. 13 Warning messages are typically issued in situations where it is useful to alert 16 might want to issue a warning when a program uses an obsolete module. 22 Warning messages are normally written to :data:`sys.stderr`, but their disposition 24 exceptions. The disposition of warnings can vary based on the :ref:`warning category 25 <warning-categories>`, the text of the warning message, and the source location where it 26 is issued. Repetitions of a particular warning for the same source location are 29 There are two stages in warning control: first, each time a warning is issued, a 33 The determination whether to issue a warning message is controlled by the [all …]
|
| /third_party/node/test/parallel/ |
| D | test-promises-warning-on-unhandled-rejection.js | 12 process.on('warning', common.mustCall((warning) => { 16 assert.strictEqual(warning.message, 'This was rejected'); 19 // Warning about rejection not being handled (will be next tick) 20 assert.strictEqual(warning.name, 'UnhandledPromiseRejectionWarning'); 22 /Unhandled promise rejection/.test(warning.message), 23 'Expected warning message to contain "Unhandled promise rejection" ' + 24 `but did not. Had "${warning.message}" instead.` 29 assert.strictEqual(warning.message, '42'); 32 // Unhandled rejection warning (won't be handled next tick) 33 assert.strictEqual(warning.name, 'UnhandledPromiseRejectionWarning'); [all …]
|
| D | test-event-emitter-max-listeners-warning.js | 2 // The flag suppresses stderr output but the warning event will still emit 19 process.on('warning', common.mustCall((warning) => { 20 assert.ok(warning instanceof Error); 21 assert.strictEqual(warning.name, 'MaxListenersExceededWarning'); 22 assert.strictEqual(warning.emitter, e); 23 assert.strictEqual(warning.count, 2); 24 assert.strictEqual(warning.type, 'event-type'); 25 assert.ok(warning.message.includes( 30 e.on('event-type', () => {}); // Trigger warning. 31 e.on('event-type', () => {}); // Verify that warning is emitted only once.
|
| D | test-process-emitwarning.js | 2 // The flag suppresses stderr output but the warning event will still emit 8 const testMsg = 'A Warning'; 13 process.on('warning', common.mustCall((warning) => { 14 assert(warning); 15 assert.match(warning.name, /^(?:Warning|CustomWarning)/); 16 assert.strictEqual(warning.message, testMsg); 17 if (warning.code) assert.strictEqual(warning.code, testCode); 18 if (warning.detail) assert.strictEqual(warning.detail, testDetail);
|
| D | test-process-warning.js | 11 // Output is skipped if the argument to the 'warning' event is 14 process.emit('warning', 'test'); 19 // Output is skipped if it's a deprecation warning and 29 // Type defaults to warning when the second argument is an object 31 process.once('warning', common.mustCall((warning) => { 32 assert.strictEqual(warning.name, 'Warning'); 63 process.on('warning', (warning) => { 64 assert.strictEqual(warning.detail, 'foo');
|
| D | test-event-emitter-max-listeners-warning-for-null.js | 2 // The flag suppresses stderr output but the warning event will still emit 12 process.on('warning', common.mustCall((warning) => { 13 assert.ok(warning instanceof Error); 14 assert.strictEqual(warning.name, 'MaxListenersExceededWarning'); 15 assert.strictEqual(warning.emitter, e); 16 assert.strictEqual(warning.count, 2); 17 assert.strictEqual(warning.type, null); 18 assert.ok(warning.message.includes(
|
| D | test-event-emitter-max-listeners-warning-for-symbol.js | 2 // The flag suppresses stderr output but the warning event will still emit 14 process.on('warning', common.mustCall((warning) => { 15 assert.ok(warning instanceof Error); 16 assert.strictEqual(warning.name, 'MaxListenersExceededWarning'); 17 assert.strictEqual(warning.emitter, e); 18 assert.strictEqual(warning.count, 2); 19 assert.strictEqual(warning.type, symbol); 20 assert.ok(warning.message.includes(
|
| D | test-process-no-deprecation.js | 4 // The --no-warnings flag only suppresses writing the warning to stderr, not the 13 assert.fail('received unexpected warning'); 16 process.addListener('warning', listener); 20 // The warning would be emitted in the next tick, so continue after that. 24 process.removeListener('warning', listener); 26 process.addListener('warning', common.mustCall((warning) => { 27 assert.strictEqual(warning.name, 'DeprecationWarning'); 28 assert.strictEqual(warning.message, 'Something else is deprecated.');
|
| D | test-snapshot-warning.js | 3 // This tests that the warning handler is cleaned up properly 16 const warningScript = fixtures.path('snapshot', 'warning.js'); 53 const match = child.stderr.toString().match(/Warning: test warning/g); 77 let match = child.stderr.toString().match(/Warning: test warning/g); 96 match = child.stderr.toString().match(/Warning: test warning/g); 128 let match = warnings1.match(/Warning: test warning/g); 132 assert.doesNotMatch(child.stderr.toString(), /Warning: test warning/); 156 match = warnings2.match(/Warning: test warning/g); 160 assert.doesNotMatch(child.stderr.toString(), /Warning: test warning/);
|
| /third_party/curl/tests/data/ |
| D | test1185 | 89 ./%LOGDIR/code1185.c:4:82: warning: Longer than 79 columns (LONGLINE) 94 ./%LOGDIR/code1185.c:7:13: warning: func with space (SPACEBEFOREPAREN) 97 ./%LOGDIR/code1185.c:8:14: warning: space after open parenthesis (SPACEAFTERPAREN) 100 ./%LOGDIR/code1185.c:9:16: warning: space before close parenthesis (SPACEBEFORECLOSE) 103 ./%LOGDIR/code1185.c:10:11: warning: space before comma (SPACEBEFORECOMMA) 106 ./%LOGDIR/code1185.c:14:9: warning: return without space before paren (RETURNNOSPACE) 109 ./%LOGDIR/code1185.c:16:11: warning: comma without following space (COMMANOSPACE) 112 ./%LOGDIR/code1185.c:18:12: warning: wrongly placed open brace (BRACEPOS) 115 ./%LOGDIR/code1185.c:20:1: warning: else after closing brace on same line (BRACEELSE) 118 ./%LOGDIR/code1185.c:24:11: warning: missing space after close paren (PARENBRACE) [all …]
|
| /third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/stable-binarysearch-tree-false-if-discard-loop/ |
| D | 0.spvasm.expected.hlsl | 3 warning: code is unreachable 4 warning: code is unreachable 5 warning: code is unreachable 6 warning: code is unreachable 7 warning: code is unreachable 8 warning: code is unreachable 9 warning: code is unreachable 10 warning: code is unreachable 11 warning: code is unreachable 12 warning: code is unreachable [all …]
|
| /third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/spv-load-from-frag-color/ |
| D | 1.spvasm.expected.hlsl | 3 warning: code is unreachable 4 warning: code is unreachable 5 warning: code is unreachable 6 warning: code is unreachable 7 warning: code is unreachable 8 warning: code is unreachable 9 warning: code is unreachable 10 warning: code is unreachable 11 warning: code is unreachable 12 warning: code is unreachable [all …]
|
| /third_party/skia/third_party/externals/tint/test/intrinsics/ |
| D | repeated_use.wgsl.expected.msl | 1 intrinsics/repeated_use.wgsl:5:9 warning: use of deprecated intrinsic 5 intrinsics/repeated_use.wgsl:6:9 warning: use of deprecated intrinsic 9 intrinsics/repeated_use.wgsl:7:9 warning: use of deprecated intrinsic 13 intrinsics/repeated_use.wgsl:9:9 warning: use of deprecated intrinsic 17 intrinsics/repeated_use.wgsl:10:9 warning: use of deprecated intrinsic 21 intrinsics/repeated_use.wgsl:11:9 warning: use of deprecated intrinsic 25 intrinsics/repeated_use.wgsl:13:9 warning: use of deprecated intrinsic 29 intrinsics/repeated_use.wgsl:14:9 warning: use of deprecated intrinsic 33 intrinsics/repeated_use.wgsl:15:9 warning: use of deprecated intrinsic 37 intrinsics/repeated_use.wgsl:17:9 warning: use of deprecated intrinsic [all …]
|
| D | repeated_use.wgsl.expected.wgsl | 1 intrinsics/repeated_use.wgsl:5:9 warning: use of deprecated intrinsic 5 intrinsics/repeated_use.wgsl:6:9 warning: use of deprecated intrinsic 9 intrinsics/repeated_use.wgsl:7:9 warning: use of deprecated intrinsic 13 intrinsics/repeated_use.wgsl:9:9 warning: use of deprecated intrinsic 17 intrinsics/repeated_use.wgsl:10:9 warning: use of deprecated intrinsic 21 intrinsics/repeated_use.wgsl:11:9 warning: use of deprecated intrinsic 25 intrinsics/repeated_use.wgsl:13:9 warning: use of deprecated intrinsic 29 intrinsics/repeated_use.wgsl:14:9 warning: use of deprecated intrinsic 33 intrinsics/repeated_use.wgsl:15:9 warning: use of deprecated intrinsic 37 intrinsics/repeated_use.wgsl:17:9 warning: use of deprecated intrinsic [all …]
|
| /third_party/lzma/CPP/Common/ |
| D | Common.h | 4 #pragma warning(disable : 4464) // relative include path contains '..' 26 #pragma warning(disable : 4710) // function not inlined 28 #pragma warning(disable : 4514) // unreferenced inline function has been removed 30 #pragma warning(disable : 4702) // unreachable code 31 #pragma warning(disable : 4714) // function marked as __forceinline not inlined 32 …#pragma warning(disable : 4786) // identifier was truncated to '255' characters in the debug infor… 35 …#pragma warning(disable : 4511) // copy constructor could not be generated // #pragma warning(d… 36 #pragma warning(disable : 4512) // assignment operator could not be generated 39 // #pragma warning(disable : 4996) 48 #pragma warning(disable : 4917) // 'OLE_HANDLE' : a GUID can only be associated with a class, inter… [all …]
|
| /third_party/typescript/tests/issues_cookbook_tests/pages/cookbook/ |
| D | 5.82.ets | 3 let e0: ESObject = foo(); // should report 1 warning 7 let e2: ESObject = 1; // should report 1 warning 8 let e3: ESObject = {}; // should report 1 warning 9 let e4: ESObject = []; // should report 1 warning 10 let e5: ESObject = ''; // should report 1 warning 11 e5['prop']; // should report 1 warning 12 e5[1]; // should report 1 warning 13 e5.prop; // should report 1 warning 15 let e7 = e6; // should report 1 warning
|
| /third_party/lzma/C/ |
| D | Compiler.h | 40 … /* #pragma warning(disable : 4115) // '_RPC_ASYNC_STATE' : named type definition in parentheses */ 41 #pragma warning(disable : 4201) // nonstandard extension used : nameless struct/union 42 #pragma warning(disable : 4214) // nonstandard extension used : bit field types other than int 46 #pragma warning(disable : 4464) // relative include path contains '..' 51 #pragma warning(disable : 4710) // function not inlined 55 #pragma warning(disable : 4514) // unreferenced inline function has been removed 59 // #pragma warning(disable : 4702) // unreachable code 61 #pragma warning(disable : 4714) // function marked as __forceinline not inlined 68 #pragma warning(disable : 4996) 75 #pragma warning(disable : 4711) // function selected for automatic inline expansion [all …]
|
| /third_party/python/Lib/ |
| D | warnings.py | 11 """Hook to write a warning to a file; replace if you like.""" 16 """Function to format a warning the standard way.""" 32 # the file (probably stderr) is invalid - this warning gets lost. 44 # When a warning is logged during Python shutdown, linecache 57 # Logging a warning should not raise a new exception: 68 # When a warning is logged during Python shutdown, tracemalloc 97 """Hook to write a warning to a file; replace if you like.""" 118 """Function to format a warning the standard way.""" 130 def filterwarnings(action, message="", category=Warning, module="", lineno=0, 136 'message' -- a regex that the warning message must match [all …]
|