Home
last modified time | relevance | path

Searched full:warning (Results 1 – 25 of 5870) sorted by relevance

12345678910>>...235

/third_party/Linux_Kernel/scripts/
DMakefile.extrawarn18 warning- := $(empty)
20 warning-1 := -Wextra -Wunused -Wno-unused-parameter
21 warning-1 += -Wmissing-declarations
22 warning-1 += -Wmissing-format-attribute
23 warning-1 += $(call cc-option, -Wmissing-prototypes)
24 warning-1 += -Wold-style-definition
25 warning-1 += $(call cc-option, -Wmissing-include-dirs)
26 warning-1 += $(call cc-option, -Wunused-but-set-variable)
27 warning-1 += $(call cc-disable-warning, missing-field-initializers)
29 warning-2 := -Waggregate-return
[all …]
/third_party/curl/lib/
Dwarnless.c65 # pragma warning(push) in curlx_ultous()
66 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_ultous()
73 # pragma warning(pop) in curlx_ultous()
84 # pragma warning(push) in curlx_ultouc()
85 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_ultouc()
92 # pragma warning(pop) in curlx_ultouc()
103 # pragma warning(push) in curlx_uztoso()
104 # pragma warning(disable:810) /* conversion may lose significant bits */ in curlx_uztoso()
106 # pragma warning(push) in curlx_uztoso()
107 # pragma warning(disable:4310) /* cast truncates constant value */ in curlx_uztoso()
[all …]
/third_party/boost/boost/container/detail/
Dconfig_begin.hpp19 #pragma warning (push)
20 #pragma warning (disable : 4127) // conditional expression is constant
21 …#pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still un…
22 #pragma warning (disable : 4197) // top-level volatile in cast is ignored
23 #pragma warning (disable : 4244) // possible loss of data
24 …#pragma warning (disable : 4251) // "identifier" : class "type" needs to have dll-interface to be …
25 #pragma warning (disable : 4267) // conversion from "X" to "Y", possible loss of data
26 …#pragma warning (disable : 4275) // non DLL-interface classkey "identifier" used as base for DLL-i…
27 #pragma warning (disable : 4284) // odd return type for operator->
28 …#pragma warning (disable : 4290) // C++ exception specification ignored except to indicate a funct…
[all …]
/third_party/cares/
Dares_nowarn.c68 # pragma warning(push) in aresx_uztosl()
69 # pragma warning(disable:810) /* conversion may lose significant bits */ in aresx_uztosl()
75 # pragma warning(pop) in aresx_uztosl()
86 # pragma warning(push) in aresx_uztosi()
87 # pragma warning(disable:810) /* conversion may lose significant bits */ in aresx_uztosi()
93 # pragma warning(pop) in aresx_uztosi()
104 # pragma warning(push) in aresx_uztoss()
105 # pragma warning(disable:810) /* conversion may lose significant bits */ in aresx_uztoss()
111 # pragma warning(pop) in aresx_uztoss()
122 # pragma warning(push) in aresx_sitoss()
[all …]
/third_party/node/deps/cares/src/
Dares_nowarn.c68 # pragma warning(push) in aresx_uztosl()
69 # pragma warning(disable:810) /* conversion may lose significant bits */ in aresx_uztosl()
75 # pragma warning(pop) in aresx_uztosl()
86 # pragma warning(push) in aresx_uztosi()
87 # pragma warning(disable:810) /* conversion may lose significant bits */ in aresx_uztosi()
93 # pragma warning(pop) in aresx_uztosi()
104 # pragma warning(push) in aresx_uztoss()
105 # pragma warning(disable:810) /* conversion may lose significant bits */ in aresx_uztoss()
111 # pragma warning(pop) in aresx_uztoss()
122 # pragma warning(push) in aresx_sitoss()
[all …]
/third_party/node/lib/internal/process/
Dwarning.js64 function doEmitWarning(warning) { argument
65 return () => process.emit('warning', warning);
68 function onWarning(warning) { argument
69 if (!(warning instanceof Error)) return;
70 const isDeprecation = warning.name === 'DeprecationWarning';
75 if (warning.code)
76 msg += `[${warning.code}] `;
77 if (trace && warning.stack) {
78 msg += `${warning.stack}`;
81 typeof warning.toString === 'function' ?
[all …]
/third_party/boost/boost/interprocess/detail/
Dconfig_begin.hpp16 #pragma warning (push)
17 #pragma warning (disable : 4702) // unreachable code
18 #pragma warning (disable : 4706) // assignment within conditional expression
19 #pragma warning (disable : 4127) // conditional expression is constant
20 …#pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still un…
21 #pragma warning (disable : 4284) // odd return type for operator->
22 #pragma warning (disable : 4244) // possible loss of data
23 …#pragma warning (disable : 4251) // "identifier" : class "type" needs to have dll-interface to be …
24 #pragma warning (disable : 4267) // conversion from "X" to "Y", possible loss of data
25 …#pragma warning (disable : 4275) // non DLL-interface classkey "identifier" used as base for DLL-i…
[all …]
/third_party/glib/
Dmsvc_recommended_pragmas.h8 #pragma warning(error:4002) /* too many actual parameters for macro */
9 #pragma warning(error:4003) /* not enough actual parameters for macro */
10 #pragma warning(1:4010) /* single-line comment contains line-continuation character */
11 #pragma warning(error:4013) /* 'function' undefined; assuming extern returning int */
12 #pragma warning(1:4016) /* no function return type; using int as default */
13 #pragma warning(error:4020) /* too many actual parameters */
14 #pragma warning(error:4021) /* too few actual parameters */
15 #pragma warning(error:4027) /* function declared without formal parameter list */
16 #pragma warning(error:4029) /* declared formal parameter list different from definition */
17 #pragma warning(error:4033) /* 'function' must return a value */
[all …]
/third_party/boost/boost/atomic/detail/
Dheader.hpp14 #pragma warning(push, 3)
16 #pragma warning(disable: 4251)
18 #pragma warning(disable: 4275)
20 #pragma warning(disable: 4355)
21 // 'int' : forcing value to bool 'true' or 'false' (performance warning)
22 #pragma warning(disable: 4800)
24 #pragma warning(disable: 4100)
26 #pragma warning(disable: 4127)
28 #pragma warning(disable: 4510)
30 #pragma warning(disable: 4511)
[all …]
/third_party/boost/boost/intrusive/detail/
Dconfig_begin.hpp19 #pragma warning (push)
20 …#pragma warning (disable : 4275) // non DLL-interface classkey "identifier" used as base for DLL-i…
21 …#pragma warning (disable : 4251) // "identifier" : class "type" needs to have dll-interface to be …
22 …#pragma warning (disable : 4675) // "method" should be declared "static" and have exactly one para…
23 #pragma warning (disable : 4996) // "function": was declared deprecated
24 …#pragma warning (disable : 4503) // "identifier" : decorated name length exceeded, name was trunca…
25 #pragma warning (disable : 4284) // odd return type for operator->
26 #pragma warning (disable : 4244) // possible loss of data
27 #pragma warning (disable : 4521) ////Disable "multiple copy constructors specified"
28 #pragma warning (disable : 4127) //conditional expression is constant
[all …]
/third_party/node/test/parallel/
Dtest-promises-warning-on-unhandled-rejection.js14 process.on('warning', common.mustCall((warning) => {
18 assert.strictEqual(warning.message, 'This was rejected');
21 // Warning about rejection not being handled (will be next tick)
22 assert.strictEqual(warning.name, 'UnhandledPromiseRejectionWarning');
24 /Unhandled promise rejection/.test(warning.message),
25 'Expected warning message to contain "Unhandled promise rejection" ' +
26 `but did not. Had "${warning.message}" instead.`
30 // One time deprecation warning, first unhandled rejection
31 assert.strictEqual(warning.name, 'DeprecationWarning');
35 assert.strictEqual(warning.message, '42');
[all …]
Dtest-event-emitter-max-listeners-warning.js2 // 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.
Dtest-process-warning.js11 // 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');
58 process.on('warning', (warning) => {
59 assert.strictEqual(warning.detail, 'foo');
Dtest-event-emitter-max-listeners-warning-for-null.js2 // 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(
Dtest-process-emitwarning.js2 // 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(/^(?:Warning|CustomWarning)/.test(warning.name));
16 assert.strictEqual(warning.message, testMsg);
17 if (warning.code) assert.strictEqual(warning.code, testCode);
18 if (warning.detail) assert.strictEqual(warning.detail, testDetail);
Dtest-event-emitter-max-listeners-warning-for-symbol.js2 // 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(
Dtest-process-no-deprecation.js4 // 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.');
/third_party/boost/boost/log/detail/
Dheader.hpp14 #pragma warning(push, 3)
16 #pragma warning(disable: 4251)
18 #pragma warning(disable: 4275)
20 #pragma warning(disable: 4065)
22 #pragma warning(disable: 4355)
23 // 'int' : forcing value to bool 'true' or 'false' (performance warning)
24 #pragma warning(disable: 4800)
26 #pragma warning(disable: 4100)
28 #pragma warning(disable: 4127)
30 #pragma warning(disable: 4510)
[all …]
/third_party/python/Doc/library/
Dwarnings.rst1 :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/boost/boost/test/detail/
Denable_warnings.hpp13 # pragma warning(default: 4511) // copy constructor can't not be generated
14 # pragma warning(default: 4512) // assignment operator can't not be generated
15 # pragma warning(default: 4100) // unreferenced formal parameter
16 # pragma warning(default: 4996) // <symbol> was declared deprecated
17 # pragma warning(default: 4355) // 'this' : used in base member initializer list
18 # pragma warning(default: 4706) // assignment within conditional expression
19 # pragma warning(default: 4251) // class 'A<T>' needs to have dll-interface to be used by clients o…
20 # pragma warning(default: 4127) // conditional expression is constant
21 # pragma warning(default: 4290) // C++ exception specification ignored except to ...
22 # pragma warning(default: 4180) // qualifier applied to function type has no meaning; ignored
[all …]
Dsuppress_warnings.hpp13 # pragma warning(push)
14 # pragma warning(disable: 4511) // copy constructor can't not be generated
15 # pragma warning(disable: 4512) // assignment operator can't not be generated
16 # pragma warning(disable: 4100) // unreferenced formal parameter
17 # pragma warning(disable: 4996) // <symbol> was declared deprecated
18 # pragma warning(disable: 4355) // 'this' : used in base member initializer list
19 # pragma warning(disable: 4706) // assignment within conditional expression
20 # pragma warning(disable: 4251) // class 'A<T>' needs to have dll-interface to be used by clients o…
21 # pragma warning(disable: 4127) // conditional expression is constant
22 # pragma warning(disable: 4290) // C++ exception specification ignored except to ...
[all …]
/third_party/boost/libs/gil/doc/
Dwarnings.txt1 /root/project/libs/gil/include/boost/gil/channel.hpp:34: warning: preprocessing issue while doing c…
2 /root/project/libs/gil/include/boost/gil/image_processing/harris.hpp:16: warning: missing title aft…
3 /root/project/libs/gil/include/boost/gil/image_processing/numeric.hpp:22: warning: missing title af…
4 /root/project/libs/gil/include/boost/gil/image_processing/scaling.hpp:18: warning: missing title af…
5 /root/project/libs/gil/include/boost/gil/image_processing/scaling.hpp:23: warning: missing title af…
6 /root/project/libs/gil/include/boost/gil/bit_aligned_pixel_reference.hpp:85: warning: Refusing to a…
7 /root/project/libs/gil/include/boost/gil/image_processing/numeric.hpp:22: warning: Refusing to add …
8 /root/project/libs/gil/include/boost/gil/image_processing/scaling.hpp:23: warning: Refusing to add …
9 /root/project/libs/gil/include/boost/gil/image_processing/threshold.hpp:97: warning: argument 'thre…
10 /root/project/libs/gil/include/boost/gil/image_processing/threshold.hpp:108: warning: The following…
[all …]
/third_party/boost/tools/quickbook/test/
Dblocks-1_5.gold31 <warning>
33 Warning
35 </warning>
56 <warning>
58 Warning first paragraph.
61 Warning second paragraph.
63 </warning>
91 <warning>
93 Warning
95 </warning>
[all …]
Dblocks-1_5.quickbook21 [warning Warning]
27 [warning Warning first paragraph.
29 Warning second paragraph.]
44 Multiple paragraphs because of the inline blocks. [warning Warning] This
45 line should appear as a separate paragraph.[warning Warning]
/third_party/libusb/msvc/
Dconfig.h13 /* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/union */
14 #pragma warning(disable:4200)
15 /* Disable: warning C4324: structure was padded due to __declspec(align()) */
16 #pragma warning(disable:4324)
17 /* Disable: warning C6258: Using TerminateThread does not allow proper thread clean up */
18 #pragma warning(disable:6258)
19 /* Disable: warning C4996: 'GetVersionA': was declared deprecated */
20 #pragma warning(disable:4996)
24 #pragma warning(disable:28719)
26 #pragma warning(disable:28125)

12345678910>>...235