/third_party/rust/crates/env_logger/src/filter/ |
H A D | mod.rs | 397 .filter(Some("crate1::mod1"), LevelFilter::Warn) in filter_beginning_longest_match() 419 Level::Error | Level::Warn | Level::Info | Level::Debug | Level::Trace => (), in ensure_tests_cover_level_universe() 426 assert!(enabled(&logger.directives, Level::Warn, "crate1::mod1")); in parse_default() 434 assert!(!enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_off_lc() 444 assert!(!enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_off_uc() 454 assert!(!enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_error_lc() 464 assert!(!enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_error_uc() 474 assert!(enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_warn_lc() 484 assert!(enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_warn_uc() 494 assert!(enabled(&logger.directives, Level::Warn, "")); in parse_default_bare_level_info_lc() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/lint/ |
H A D | lint_divergent_derivatives.cpp | 82 spvtools::DiagnosticStream Warn(opt::IRContext* context, in Warn() function 102 Warn(context, nullptr) in PrintDivergenceFlow() 113 Warn(context, branch) in PrintDivergenceFlow() 118 Warn(context, nullptr) in PrintDivergenceFlow() 126 Warn(context, def_use->GetDef(id)) in PrintDivergenceFlow() 136 Warn(context, def) << "because it has a divergent definition"; in PrintDivergenceFlow() 139 Warn(context, def) << "because it is conditionally set in block " in PrintDivergenceFlow() 156 Warn(context, nullptr) in CheckDivergentDerivatives()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/lint/ |
H A D | lint_divergent_derivatives.cpp | 82 spvtools::DiagnosticStream Warn(opt::IRContext* context, in Warn() function 102 Warn(context, nullptr) in PrintDivergenceFlow() 113 Warn(context, branch) in PrintDivergenceFlow() 118 Warn(context, nullptr) in PrintDivergenceFlow() 126 Warn(context, def_use->GetDef(id)) in PrintDivergenceFlow() 136 Warn(context, def) << "because it has a divergent definition"; in PrintDivergenceFlow() 139 Warn(context, def) << "because it is conditionally set in block " in PrintDivergenceFlow() 156 Warn(context, nullptr) in CheckDivergentDerivatives()
|
/third_party/spirv-tools/source/lint/ |
H A D | lint_divergent_derivatives.cpp | 81 spvtools::DiagnosticStream Warn(opt::IRContext* context, in Warn() function 101 Warn(context, nullptr) in PrintDivergenceFlow() 113 Warn(context, branch) in PrintDivergenceFlow() 118 Warn(context, nullptr) in PrintDivergenceFlow() 126 Warn(context, def_use->GetDef(id)) in PrintDivergenceFlow() 136 Warn(context, def) << "because it has a divergent definition"; in PrintDivergenceFlow() 139 Warn(context, def) << "because it is conditionally set in block " in PrintDivergenceFlow() 156 Warn(context, nullptr) in CheckDivergentDerivatives()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
H A D | InstrProfWriter.h | 54 function_ref<void(Error)> Warn); 55 void addRecord(NamedInstrProfRecord &&I, function_ref<void(Error)> Warn) { in addRecord() argument 56 addRecord(std::move(I), 1, Warn); in addRecord() local 61 function_ref<void(Error)> Warn); 111 uint64_t Weight, function_ref<void(Error)> Warn);
|
H A D | InstrProf.h | 675 function_ref<void(instrprof_error)> Warn); 677 void scale(uint64_t Weight, function_ref<void(instrprof_error)> Warn); 748 function_ref<void(instrprof_error)> Warn); 752 void scale(uint64_t Weight, function_ref<void(instrprof_error)> Warn); 835 function_ref<void(instrprof_error)> Warn); 839 function_ref<void(instrprof_error)> Warn);
|
/third_party/rust/crates/log/src/ |
H A D | serde.rs | 24 Level::Warn => serializer.serialize_unit_variant("Level", 1, "WARN"), in serialize() 119 LevelFilter::Warn => serializer.serialize_unit_variant("LevelFilter", 2, "WARN"), in serialize() 267 (Level::Warn, [level_token("WARN")]), in test_level_ser_de() 282 (Level::Warn, [level_token("warn")]), in test_level_case_insensitive() 297 (Level::Warn, level_bytes_tokens(b"WARN")), in test_level_de_bytes() 312 (Level::Warn, level_variant_tokens(1)), in test_level_de_variant_index() 335 (LevelFilter::Warn, [level_filter_token("WARN")]), in test_level_filter_ser_de() 351 (LevelFilter::Warn, [level_filter_token("warn")]), in test_level_filter_case_insensitive() 367 (LevelFilter::Warn, level_filter_bytes_tokens(b"WARN")), in test_level_filter_de_bytes() 383 (LevelFilter::Warn, level_filter_variant_token in test_level_filter_de_variant_index() [all...] |
H A D | lib.rs | 157 //! logs all messages at the [`Error`][level_link], [`Warn`][level_link] or 437 Warn, 586 2 => Some(Level::Warn), in from_usize() 647 /// Corresponds to the `Warn` log level. 648 Warn, 765 2 => Some(LevelFilter::Warn), in from_usize() 1661 const MAX_LEVEL_INNER: LevelFilter = LevelFilter::Warn; 1673 const MAX_LEVEL_INNER: LevelFilter = LevelFilter::Warn; 1694 ("warn", Ok(LevelFilter::Warn)), in test_levelfilter_from_str() 1700 ("WARN", Ok(LevelFilter::Warn)), in test_levelfilter_from_str() [all...] |
H A D | macros.rs | 26 /// log!(target: "app_events", Level::Warn, "App warning: {}, {}, {}", 104 (target: $target:expr, $($arg:tt)+) => (log!(target: $target, $crate::Level::Warn, $($arg)+)); 107 ($($arg:tt)+) => (log!($crate::Level::Warn, $($arg)+))
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | afblue.pl | 86 sub Warn subroutine 104 Warn("data before first section gets ignored") unless $warned_before; 245 Warn("previous section is empty") if ($have_sections 260 Warn("overwriting already defined enumeration \`$curr_enum'") 262 Warn("overwriting already defined array \`$curr_array'") 264 Warn("overwriting already defined maximum value \`$curr_max'")
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | Debug.cpp | 52 Warn, member in __anon22985::Level 69 case Level::Warn: in logv_android() 91 case Level::Warn: in logv_std() 150 logv(Level::Warn, format, vararg); in warn()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Debug.cpp | 103 Warn, member in __anon22909::Level 119 case Level::Warn: in logv_android() 139 case Level::Warn: in logv_std() 198 logv(Level::Warn, format, vararg); in warn()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | InstrProf.cpp | 603 function_ref<void(instrprof_error)> Warn) { in merge() 616 Warn(instrprof_error::counter_overflow); in merge() 625 function_ref<void(instrprof_error)> Warn) { in scale() 630 Warn(instrprof_error::counter_overflow); in scale() 638 function_ref<void(instrprof_error)> Warn) { in mergeValueProfData() 642 Warn(instrprof_error::value_site_count_mismatch); in mergeValueProfData() 652 ThisSiteRecords[I].merge(OtherSiteRecords[I], Weight, Warn); in mergeValueProfData() 656 function_ref<void(instrprof_error)> Warn) { in merge() 660 Warn(instrprof_error::count_mismatch); in merge() 669 Warn(instrprof_erro in merge() 601 merge(InstrProfValueSiteRecord &Input, uint64_t Weight, function_ref<void(instrprof_error)> Warn) merge() argument 624 scale(uint64_t Weight, function_ref<void(instrprof_error)> Warn) scale() argument 636 mergeValueProfData( uint32_t ValueKind, InstrProfRecord &Src, uint64_t Weight, function_ref<void(instrprof_error)> Warn) mergeValueProfData() argument 655 merge(InstrProfRecord &Other, uint64_t Weight, function_ref<void(instrprof_error)> Warn) merge() argument 676 scaleValueProfData( uint32_t ValueKind, uint64_t Weight, function_ref<void(instrprof_error)> Warn) scaleValueProfData() argument 683 scale(uint64_t Weight, function_ref<void(instrprof_error)> Warn) scale() argument [all...] |
H A D | InstrProfWriter.cpp | 184 function_ref<void(Error)> Warn) { in addRecord() 187 addRecord(Name, Hash, std::move(I), Weight, Warn); in addRecord() 226 function_ref<void(Error)> Warn) { in addRecord() 236 Warn(make_error<InstrProfError>(E)); in addRecord() 253 function_ref<void(Error)> Warn) { in mergeRecordsFromWriter() 256 addRecord(I.getKey(), Func.first, std::move(Func.second), 1, Warn); in mergeRecordsFromWriter() 183 addRecord(NamedInstrProfRecord &&I, uint64_t Weight, function_ref<void(Error)> Warn) addRecord() argument 224 addRecord(StringRef Name, uint64_t Hash, InstrProfRecord &&I, uint64_t Weight, function_ref<void(Error)> Warn) addRecord() argument 252 mergeRecordsFromWriter(InstrProfWriter &&IPW, function_ref<void(Error)> Warn) mergeRecordsFromWriter() argument
|
/third_party/rust/crates/clap/examples/ |
H A D | typed-derive.rs | 67 Warn, 77 Self::Warn => "warn", in fmt() 91 "warn" => Ok(Self::Warn), in from_str()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | PackedEGLEnums_autogen.cpp | 177 return MessageType::Warn; in FromEGLenum() 193 case MessageType::Warn: in ToEGLenum() 213 case MessageType::Warn: in operator <<()
|
H A D | PackedEGLEnums_autogen.h | 75 Warn = 2, member in egl::MessageType
|
/third_party/rust/crates/log/tests/ |
H A D | filters.rs | 62 test(&a, LevelFilter::Warn); in main() 74 last(&a, t(Level::Warn, filter)); in test()
|
/third_party/rust/crates/log/test_max_level_features/ |
H A D | main.rs | 39 test(&a, LevelFilter::Warn); in main() 50 last(&a, t(Level::Warn, filter)); in test()
|
/third_party/weex-loader/src/ |
H A D | legacy.js | 31 console.warn(`\u001b[1;32m[Warn]\u001b[0m: method ${method} in weex-loader is no more necessary`)
|
/third_party/rust/crates/env_logger/examples/ |
H A D | syslog_friendly_format.rs | 12 log::Level::Warn => 4,
in main()
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8-console.h | 25 void Warn(const debug::ConsoleCallArguments& args,
|
H A D | d8-console.cc | 59 void D8Console::Warn(const debug::ConsoleCallArguments& args, in Warn() function in v8::D8Console
|
/third_party/node/deps/v8/src/debug/ |
H A D | interface-types.h | 131 virtual void Warn(const ConsoleCallArguments& args, in Warn() function in v8::debug::ConsoleDelegate
|
/third_party/rust/crates/env_logger/src/fmt/writer/termcolor/ |
H A D | extern_impl.rs | 58 Level::Warn => level_style.set_color(Color::Yellow), in default_level_style()
|