/third_party/curl/lib/ |
H A 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(disabl in curlx_uztoso() [all...] |
/third_party/node/lib/internal/process/ |
H A D | warning.js | 88 function doEmitWarning(warning) { 89 process.emit('warning', warning); 92 function onWarning(warning) { 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 [all...] |
H A D | promises.js | 49 // Emit 'unhandledRejection', but do not emit any warning. 170 // Generate the warning object early to get a good stack trace. 172 const warning = new Error('Promise rejection was handled ' + 174 warning.name = 'PromiseRejectionHandledWarning'; 175 warning.id = uid; 176 ArrayPrototypePush(asyncHandledRejections, { promise, warning }); 187 const warning = getErrorWithoutStack( 199 warning.stack = reason.stack; 214 process.emitWarning(warning); 218 // a warning t [all...] |
/third_party/mesa3d/src/gallium/frontends/wgl/ |
H A 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/lzma/CPP/Common/ |
H A 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 information
35 #pragma warning(disable : 4511) // copy constructor could not be generated // #pragma warning(disable : 4512) // assignment operator could not be generated
36 #pragma warning(disable : 4512) // assignment operator could not be generated
39 // #pragma warning(disabl [all...] |
/third_party/lzma/C/ |
H A 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(disabl [all...] |
H A D | 7zWindows.h | 15 #pragma warning(push)
16 #pragma warning(disable : 4668) // '_WIN32_WINNT' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif'
20 // #pragma warning(disable : 4255) // winuser.h(13979): warning C4255: 'GetThreadDpiAwarenessContext':
42 #pragma warning(pop)
75 #pragma warning(disable : 4201)
76 // #pragma warning(disable : 4115)
94 // #pragma warning(disable : 4514)
|
/third_party/node/test/parallel/ |
H A D | test-process-emitwarning.js | 2 // The flag suppresses stderr output but the warning event will still emit 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 [all...] |
H A 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 [all...] |
H A D | test-timers-max-duration-warning.js | 13 process.on('warning', common.mustCall((warning) => { 14 if (warning.name === 'DeprecationWarning') return; 16 const lines = warning.message.split('\n'); 18 assert.strictEqual(warning.name, 'TimeoutOverflowWarning');
|
H A D | test-nodeeventtarget.js | 131 process.on('warning', common.mustCall((warning) => { 132 ok(warning instanceof Error); 133 strictEqual(warning.name, 'MaxListenersExceededWarning'); 134 strictEqual(warning.target, target); 135 strictEqual(warning.count, 2); 136 strictEqual(warning.type, 'foo'); 137 ok(warning.message.includes(
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb.hh | 35 #pragma warning( disable: 4068 ) /* Unknown pragma */ 46 * be declared as "warning". Otherwise, either ignored or error. 51 #pragma GCC diagnostic warning "-Wall" 52 #pragma GCC diagnostic warning "-Wextra" 57 #pragma GCC diagnostic ignored "-Wunknown-warning-option" 60 //#pragma GCC diagnostic warning "-Weverything" 100 #pragma GCC diagnostic warning "-Wbuiltin-macro-redefined" 101 #pragma GCC diagnostic warning "-Wdeprecated" 102 #pragma GCC diagnostic warning "-Wdeprecated-declarations" 103 #pragma GCC diagnostic warning " [all...] |
/third_party/rust/crates/clap/src/error/ |
H A D | format.rs | 135 styled.warning(invalid_arg); in write_dynamic_context() 139 styled.warning(invalid_arg); in write_dynamic_context() 148 styled.warning(&**v); in write_dynamic_context() 153 styled.warning(value); in write_dynamic_context() 170 styled.warning(invalid_arg); in write_dynamic_context() 187 styled.warning(invalid_arg); in write_dynamic_context() 193 styled.warning(invalid_arg); in write_dynamic_context() 222 styled.warning(invalid_sub); in write_dynamic_context() 247 styled.warning(invalid_sub); in write_dynamic_context() 282 styled.warning(invalid_valu in write_dynamic_context() [all...] |
/third_party/node/src/ |
H A D | node_process_events.cc | 36 const char* warning, in ProcessEmitWarningGeneric() 54 Local<Value> args[3]; // warning, type, code in ProcessEmitWarningGeneric() 58 if (!String::NewFromUtf8(env->isolate(), warning).ToLocal(&args[argc++])) in ProcessEmitWarningGeneric() 76 // process.emit('warning', ...), but does so on the nextTick. in ProcessEmitWarningGeneric() 89 const char* warning) { in ProcessEmitExperimentalWarning() 90 if (experimental_warnings.find(warning) != experimental_warnings.end()) in ProcessEmitExperimentalWarning() 93 experimental_warnings.insert(warning); in ProcessEmitExperimentalWarning() 94 std::string message(warning); in ProcessEmitExperimentalWarning() 100 const char* warning, in ProcessEmitDeprecationWarning() 103 env, warning, "DeprecationWarnin in ProcessEmitDeprecationWarning() 35 ProcessEmitWarningGeneric(Environment* env, const char* warning, const char* type, const char* code) ProcessEmitWarningGeneric() argument 88 ProcessEmitExperimentalWarning(Environment* env, const char* warning) ProcessEmitExperimentalWarning() argument 99 ProcessEmitDeprecationWarning(Environment* env, const char* warning, const char* deprecation_code) ProcessEmitDeprecationWarning() argument [all...] |
/third_party/libunwind/libunwind/src/ptrace/ |
H A D | _UPT_access_reg.c | 104 # warning No support for ttrace() yet. in _UPT_access_reg() 118 # warning No support for ttrace() yet. in _UPT_access_reg() 143 # warning No support for ttrace() yet. in _UPT_access_reg() 155 # warning No support for ttrace() yet. in _UPT_access_reg() 167 # warning No support for ttrace() yet. in _UPT_access_reg() 189 # warning No support for ttrace() yet. in _UPT_access_reg() 204 # warning No support for ttrace() yet. in _UPT_access_reg() 215 # warning No support for ttrace() yet. in _UPT_access_reg() 235 # warning No support for ttrace() yet. in _UPT_access_reg() 249 # warning N in _UPT_access_reg() [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | check.py | 75 # one warning 115 for warning in self._check_rst_data(data): 116 line = warning[-1].get('line') 118 warning = warning[1] 120 warning = '%s (line %s)' % (warning[1], line) 121 self.warn(warning)
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | Diagnostics.cpp | 61 void TDiagnostics::warning(const angle::pp::SourceLocation &loc, in warning() function in sh::TDiagnostics 76 void TDiagnostics::warning(const TSourceLoc &loc, const char *reason, const char *token) in warning() function in sh::TDiagnostics 81 warning(srcLoc, reason, token); in warning() 101 void PerformanceDiagnostics::warning(const TSourceLoc &loc, const char *reason, const char *token) in warning() function in sh::PerformanceDiagnostics 103 mDiagnostics->warning(loc, reason, token); in warning()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-more-matchers.h | 53 #pragma warning(push) 54 #pragma warning(disable : 4100) 58 #pragma warning(disable : 4800) 117 #pragma warning(pop)
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | sparse.c | 62 warning(insn->pos, "context check failure"); in context_increase() 74 warning(bb->pos, "context imbalance in '%s' - %s", show_ident(sym->ident), why); in imbalance() 132 warning(insn->pos, "cast loses sign"); in check_cast_instruction() 136 warning(insn->pos, "cast drops bits"); in check_cast_instruction() 140 warning(insn->pos, "cast wasn't removed"); in check_cast_instruction() 143 warning(insn->pos, "cast changes sign"); in check_cast_instruction() 149 warning(insn->pos, "value out of range"); in check_range_instruction() 159 warning(insn->pos, "%s with byte count of %llu", in check_byte_count() 253 warning(sym->pos, "%s: possible uninitialized variable (%s)", in check_context()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource1.js | 43 warning(): boolean; 52 public warning(): boolean { return false; } 69 this._warning = this.logger.warning(); 77 public warning(): boolean { return this._warning; } 90 public warning(): boolean { return false; } 194 NullLogger.prototype.warning = function () { return false; };
207 this._warning = this.logger.warning();
213 LoggerAdapter.prototype.warning = function () { return this._warning; };
228 BufferedLogger.prototype.warning = function () { return false; };
|
/third_party/ffmpeg/libavutil/ |
H A D | internal.h | 72 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478)) 73 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop)) 75 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996)) 76 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop)) 160 * Log a generic warning message about a missing feature. 170 * Log a generic warning message about a missing feature.
|
/third_party/skia/third_party/externals/tint/src/diagnostic/ |
H A D | diagnostic.h | 135 /// adds the warning message with the given Source to the end of this list. 136 /// @param system the system raising the warning message 137 /// @param warning_msg the warning message 138 /// @param source the source of the warning diagnostic 142 diag::Diagnostic warning{}; in add_warning() 143 warning.severity = diag::Severity::Warning; in add_warning() 144 warning.system = system; in add_warning() 145 warning.source = source; in add_warning() 146 warning.message = warning_msg; in add_warning() 147 add(std::move(warning)); in add_warning() [all...] |
/third_party/cmsis/CMSIS/Core/Include/ |
H A D | cmsis_compiler.h | 161 #warning No compiler specific solution for __COMPILER_BARRIER. __COMPILER_BARRIER is ignored. 231 #warning No compiler specific solution for __RESTRICT. __RESTRICT is ignored. 235 #warning No compiler specific solution for __COMPILER_BARRIER. __COMPILER_BARRIER is ignored. 264 // NO RETURN is automatically detected hence no warning here 268 #warning No compiler specific solution for __USED. __USED is ignored. 300 #warning No compiler specific solution for __ALIGNED. __ALIGNED is ignored. 304 #warning No compiler specific solution for __RESTRICT. __RESTRICT is ignored. 308 #warning No compiler specific solution for __COMPILER_BARRIER. __COMPILER_BARRIER is ignored.
|
/third_party/node/deps/v8/src/parsing/ |
H A D | pending-compilation-error-handler.cc | 123 for (MessageDetails& warning : warning_messages_) { in PrepareWarnings() 124 warning.Prepare(isolate); in PrepareWarnings() 135 for (const MessageDetails& warning : warning_messages_) { in ReportWarnings() 136 MessageLocation location = warning.GetLocation(script); in ReportWarnings() 137 Handle<String> argument = warning.ArgString(isolate, 0); in ReportWarnings() 138 DCHECK_LT(warning.ArgCount(), 2); // Arg1 is only used for errors. in ReportWarnings() 140 MessageHandler::MakeMessageObject(isolate, warning.message(), &location, in ReportWarnings()
|
/third_party/curl/tests/ |
H A D | getpart.pm | 52 my $warning=0; 172 if($warning && !@this) { 200 if($warning && !@this) { 251 if($warning) { 279 if($warning) {
|