Home
last modified time | relevance | path

Searched refs:Warning (Results 1 - 25 of 118) sorted by relevance

12345

/third_party/skia/third_party/externals/dawn/src/common/
H A DLog.cpp36 case LogSeverity::Warning: in SeverityName()
37 return "Warning"; in SeverityName()
53 case LogSeverity::Warning: in AndroidLogPriority()
84 if (mSeverity == LogSeverity::Warning || mSeverity == LogSeverity::Error) { in ~LogMessage()
103 return {LogSeverity::Warning}; in WarningLog()
/third_party/python/Lib/
H A Dwarnings.py130 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
146 assert issubclass(category, Warning), "category must be a Warning subclass"
165 def simplefilter(action, category=Warning, lineno=0, append=False):
253 return Warning
267 if not issubclass(cat, Warning):
289 # Check if message is already a Warning object
290 if isinstance(message, Warning):
295 if not (isinstance(category, type) and issubclass(category, Warning)):
296 raise TypeError("category must be a Warning subclas
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dreflib.py115 self.Warning = None
178 logDiag('WARNING:', pi.Warning)
292 # pi.Warning = 'No begin, validity, or end lines identified'
299 pi.Warning = 'Can\'t identify begin of ref page open block'
304 pi.Warning = 'Can\'t identify end of ref page open block'
311 pi.Warning = 'No short description available; could infer from the type and name'
314 pi.Warning = 'No short description available, cannot infer from the type'
333 pi.Warning = 'Page does not have an API definition include::'
377 pi.Warning = 'Embedded in definition for ' + embed.name
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/
H A Dpeers.cpp337 msg.setIcon(QMessageBox::Warning); in enter_pin()
358 msg.setIcon(QMessageBox::Warning); in ctx_p2p_start()
382 msg.setIcon(QMessageBox::Warning); in ctx_p2p_listen()
397 msg.setIcon(QMessageBox::Warning); in ctx_p2p_start_group()
1358 msg.setIcon(QMessageBox::Warning); in ctx_p2p_connect()
1392 msg.setIcon(QMessageBox::Warning); in ctx_p2p_connect()
1415 msg.setIcon(QMessageBox::Warning); in ctx_p2p_req_pin()
1438 msg.setIcon(QMessageBox::Warning); in ctx_p2p_show_pin()
1459 msg.setIcon(QMessageBox::Warning); in ctx_p2p_display_pin()
1488 msg.setIcon(QMessageBox::Warning); in ctx_p2p_display_pin_pd()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/
H A Dpeers.cpp337 msg.setIcon(QMessageBox::Warning); in enter_pin()
358 msg.setIcon(QMessageBox::Warning); in ctx_p2p_start()
382 msg.setIcon(QMessageBox::Warning); in ctx_p2p_listen()
397 msg.setIcon(QMessageBox::Warning); in ctx_p2p_start_group()
1360 msg.setIcon(QMessageBox::Warning); in ctx_p2p_connect()
1394 msg.setIcon(QMessageBox::Warning); in ctx_p2p_connect()
1417 msg.setIcon(QMessageBox::Warning); in ctx_p2p_req_pin()
1440 msg.setIcon(QMessageBox::Warning); in ctx_p2p_show_pin()
1461 msg.setIcon(QMessageBox::Warning); in ctx_p2p_display_pin()
1490 msg.setIcon(QMessageBox::Warning); in ctx_p2p_display_pin_pd()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
H A DLLLexer.h72 void Warning(LocTy WarningLoc, const Twine &Msg) const;
73 void Warning(const Twine &Msg) const { return Warning(getLoc(), Msg); } in Warning() function in llvm::LLLexer
/third_party/rust/crates/codespan/codespan-reporting/src/
H A Ddiagnostic.rs15 /// assert!(Severity::Error > Severity::Warning);
16 /// assert!(Severity::Warning > Severity::Note);
27 Warning,
40 Severity::Warning => 3, in to_cmp_int()
165 /// Create a new diagnostic with a severity of [`Severity::Warning`].
167 /// [`Severity::Warning`]: Severity::Warning
169 Diagnostic::new(Severity::Warning) in warning()
/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Dformatter_test.cc37 Diagnostic diag_warn{Severity::Warning, member in tint::diag::__anon25906::DiagFormatterTest::Severity
133 Diagnostic multiline{Severity::Warning, in TEST_F() member in tint::diag::__anon25906::Severity
168 Diagnostic multiline{Severity::Warning, in TEST_F() member in tint::diag::__anon25906::Severity
H A Ddiagnostic.h28 enum class Severity { Note, Warning, Error, InternalCompilerError, Fatal }; member in tint::diag::Severity
143 warning.severity = diag::Severity::Warning; in add_warning()
H A Dformatter.cc32 case Severity::Warning: in to_str()
160 case Severity::Warning: in format()
/third_party/rust/crates/proc-macro-error/src/imp/
H A Ddelegate.rs36 Level::Warning => PLevel::Warning,
/third_party/python/Lib/test/test_warnings/
H A D__init__.py52 class TestWarning(Warning):
259 self.module.filterwarnings("error", category=Warning)
282 self.module.filterwarnings("error", "", Warning, "", 0)
291 self.module.filterwarnings("ignore", "", Warning, "", 0)
297 self.module.filterwarnings("error", "hex*", Warning, "", 0)
419 for ob in (Warning, None, 42):
425 # ``Warning() != Warning()``.
513 # Either 'message' needs to be an instance of Warning or 'category'
520 None, Warning, Non
[all...]
/third_party/node/lib/internal/test_runner/
H A Dharness.js58 msg = `Warning: Test "${test.name}" generated asynchronous ` +
63 msg = 'Warning: A resource generated asynchronous activity after ' +
88 const msg = `Warning: Code coverage could not be enabled. ${err}`;
107 const msg = `Warning: Could not ${op} code coverage. ${err}`;
/third_party/ninja/src/
H A Dutil.cc83 void Warning(const char* msg, va_list ap) { in Warning() function
89 void Warning(const char* msg, ...) { in Warning() function
92 Warning(msg, ap); in Warning()
H A Dutil.h53 void Warning(const char* msg, ...);
54 void Warning(const char* msg, va_list ap);
H A Dstatus.h39 virtual void Warning(const char* msg, ...) = 0;
63 virtual void Warning(const char* msg, ...);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h70 bool Warning(SMLoc L, const Twine &Msg) { in Warning() function in llvm::MCAsmParserExtension
71 return getParser().Warning(L, Msg); in Warning()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DWithColor.cpp47 case HighlightColor::Warning: in WithColor()
80 return WithColor(OS, HighlightColor::Warning, DisableColors).get() in warning()
/third_party/typescript/tests/baselines/reference/
H A DinferFromGenericFunctionReturnTypes3.js59 export const Warning = 2;
240 DiagnosticSeverity.Warning = 2;
318 const Warning = 2;
/third_party/python/Lib/test/support/
H A Dwarnings_helper.py98 check_warnings(("", Warning), quiet=True)
102 filters = (("", Warning),)
110 def check_no_warnings(testcase, message='', category=Warning, force_gc=False):
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DCompilationMessages.cpp30 case tint::diag::Severity::Warning: in tintSeverityToMessageType()
159 case (tint::diag::Severity::Warning): { in AddFormattedTintMessages()
/third_party/rust/crates/codespan/codespan-reporting/src/term/
H A Dconfig.rs139 Severity::Warning => &self.header_warning, in header()
150 (LabelStyle::Primary, Severity::Warning) => &self.primary_label_warning, in label()
/third_party/rust/crates/proc-macro-error/src/
H A Ddiagnostic.rs15 Warning,
233 if *level == Level::Warning { in to_tokens()
/third_party/node/test/parallel/
H A Dtest-env-var-no-warnings.js20 assert.match(stderr.trim(), /Warning: foo\n/);
H A Dtest-tls-env-bad-extra-ca.js40 const re = /Warning: Ignoring extra certs from.*no-such-file-exists-?.* load failed:.*No such file or directory/;

Completed in 17 milliseconds

12345