Home
last modified time | relevance | path

Searched defs:severity (Results 1 – 25 of 402) sorted by relevance

12345678910>>...17

/external/angle/third_party/abseil-cpp/absl/log/internal/
Dlog_impl.h23 #define ABSL_LOG_INTERNAL_LOG_IMPL(severity) \ argument
28 #define ABSL_LOG_INTERNAL_PLOG_IMPL(severity) \ argument
35 #define ABSL_LOG_INTERNAL_DLOG_IMPL(severity) \ argument
39 #define ABSL_LOG_INTERNAL_DLOG_IMPL(severity) \ argument
44 #define ABSL_LOG_INTERNAL_LOG_IF_IMPL(severity, condition) \ argument
47 #define ABSL_LOG_INTERNAL_PLOG_IF_IMPL(severity, condition) \ argument
53 #define ABSL_LOG_INTERNAL_DLOG_IF_IMPL(severity, condition) \ argument
57 #define ABSL_LOG_INTERNAL_DLOG_IF_IMPL(severity, condition) \ argument
63 #define ABSL_LOG_INTERNAL_LOG_EVERY_N_IMPL(severity, n) \ argument
68 #define ABSL_LOG_INTERNAL_LOG_FIRST_N_IMPL(severity, n) \ argument
[all …]
/external/cronet/third_party/abseil-cpp/absl/log/internal/
Dlog_impl.h23 #define ABSL_LOG_IMPL(severity) \ argument
28 #define ABSL_PLOG_IMPL(severity) \ argument
35 #define ABSL_DLOG_IMPL(severity) \ argument
39 #define ABSL_DLOG_IMPL(severity) \ argument
44 #define ABSL_LOG_IF_IMPL(severity, condition) \ argument
47 #define ABSL_PLOG_IF_IMPL(severity, condition) \ argument
53 #define ABSL_DLOG_IF_IMPL(severity, condition) \ argument
57 #define ABSL_DLOG_IF_IMPL(severity, condition) \ argument
63 #define ABSL_LOG_EVERY_N_IMPL(severity, n) \ argument
68 #define ABSL_LOG_FIRST_N_IMPL(severity, n) \ argument
[all …]
/external/webrtc/third_party/abseil-cpp/absl/log/
Dlog.h166 #define LOG(severity) \ argument
174 #define PLOG(severity) \ argument
185 #define DLOG(severity) \ argument
189 #define DLOG(severity) \ argument
199 #define LOG_IF(severity, condition) \ argument
202 #define PLOG_IF(severity, condition) \ argument
208 #define DLOG_IF(severity, condition) \ argument
212 #define DLOG_IF(severity, condition) \ argument
228 #define LOG_EVERY_N(severity, n) \ argument
237 #define LOG_FIRST_N(severity, n) \ argument
[all …]
Dglobals.cc63 void RawSetMinLogLevel(absl::LogSeverityAtLeast severity) { in RawSetMinLogLevel()
67 void RawSetStderrThreshold(absl::LogSeverityAtLeast severity) { in RawSetStderrThreshold()
86 void SetMinLogLevel(absl::LogSeverityAtLeast severity) { in SetMinLogLevel()
93 ScopedMinLogLevel::ScopedMinLogLevel(absl::LogSeverityAtLeast severity) in ScopedMinLogLevel()
108 void SetStderrThreshold(absl::LogSeverityAtLeast severity) { in SetStderrThreshold()
113 ScopedStderrThreshold::ScopedStderrThreshold(absl::LogSeverityAtLeast severity) in ScopedStderrThreshold()
/external/angle/third_party/abseil-cpp/absl/log/
Dabsl_log.h38 #define ABSL_LOG(severity) ABSL_LOG_INTERNAL_LOG_IMPL(_##severity) argument
39 #define ABSL_PLOG(severity) ABSL_LOG_INTERNAL_PLOG_IMPL(_##severity) argument
40 #define ABSL_DLOG(severity) ABSL_LOG_INTERNAL_DLOG_IMPL(_##severity) argument
42 #define ABSL_LOG_IF(severity, condition) \ argument
44 #define ABSL_PLOG_IF(severity, condition) \ argument
46 #define ABSL_DLOG_IF(severity, condition) \ argument
49 #define ABSL_LOG_EVERY_N(severity, n) \ argument
51 #define ABSL_LOG_FIRST_N(severity, n) \ argument
53 #define ABSL_LOG_EVERY_POW_2(severity) \ argument
55 #define ABSL_LOG_EVERY_N_SEC(severity, n_seconds) \ argument
[all …]
Dlog.h199 #define LOG(severity) ABSL_LOG_INTERNAL_LOG_IMPL(_##severity) argument
205 #define PLOG(severity) ABSL_LOG_INTERNAL_PLOG_IMPL(_##severity) argument
212 #define DLOG(severity) ABSL_LOG_INTERNAL_DLOG_IMPL(_##severity) argument
219 #define LOG_IF(severity, condition) \ argument
221 #define PLOG_IF(severity, condition) \ argument
223 #define DLOG_IF(severity, condition) \ argument
237 #define LOG_EVERY_N(severity, n) \ argument
245 #define LOG_FIRST_N(severity, n) \ argument
253 #define LOG_EVERY_POW_2(severity) \ argument
265 #define LOG_EVERY_N_SEC(severity, n_seconds) \ argument
[all …]
Dglobals.cc69 void RawSetMinLogLevel(absl::LogSeverityAtLeast severity) { in RawSetMinLogLevel()
73 void RawSetStderrThreshold(absl::LogSeverityAtLeast severity) { in RawSetStderrThreshold()
92 void SetMinLogLevel(absl::LogSeverityAtLeast severity) { in SetMinLogLevel()
99 ScopedMinLogLevel::ScopedMinLogLevel(absl::LogSeverityAtLeast severity) in ScopedMinLogLevel()
114 void SetStderrThreshold(absl::LogSeverityAtLeast severity) { in SetStderrThreshold()
119 ScopedStderrThreshold::ScopedStderrThreshold(absl::LogSeverityAtLeast severity) in ScopedStderrThreshold()
/external/cronet/third_party/abseil-cpp/absl/log/
Dabsl_log.h38 #define ABSL_LOG(severity) ABSL_LOG_IMPL(_##severity) argument
39 #define ABSL_PLOG(severity) ABSL_PLOG_IMPL(_##severity) argument
40 #define ABSL_DLOG(severity) ABSL_DLOG_IMPL(_##severity) argument
42 #define ABSL_LOG_IF(severity, condition) \ argument
44 #define ABSL_PLOG_IF(severity, condition) \ argument
46 #define ABSL_DLOG_IF(severity, condition) \ argument
49 #define ABSL_LOG_EVERY_N(severity, n) ABSL_LOG_EVERY_N_IMPL(_##severity, n) argument
50 #define ABSL_LOG_FIRST_N(severity, n) ABSL_LOG_FIRST_N_IMPL(_##severity, n) argument
51 #define ABSL_LOG_EVERY_POW_2(severity) ABSL_LOG_EVERY_POW_2_IMPL(_##severity) argument
52 #define ABSL_LOG_EVERY_N_SEC(severity, n_seconds) \ argument
[all …]
Dlog.h199 #define LOG(severity) ABSL_LOG_IMPL(_##severity) argument
205 #define PLOG(severity) ABSL_PLOG_IMPL(_##severity) argument
212 #define DLOG(severity) ABSL_DLOG_IMPL(_##severity) argument
219 #define LOG_IF(severity, condition) ABSL_LOG_IF_IMPL(_##severity, condition) argument
220 #define PLOG_IF(severity, condition) ABSL_PLOG_IF_IMPL(_##severity, condition) argument
221 #define DLOG_IF(severity, condition) ABSL_DLOG_IF_IMPL(_##severity, condition) argument
234 #define LOG_EVERY_N(severity, n) ABSL_LOG_EVERY_N_IMPL(_##severity, n) argument
241 #define LOG_FIRST_N(severity, n) ABSL_LOG_FIRST_N_IMPL(_##severity, n) argument
248 #define LOG_EVERY_POW_2(severity) ABSL_LOG_EVERY_POW_2_IMPL(_##severity) argument
259 #define LOG_EVERY_N_SEC(severity, n_seconds) \ argument
[all …]
/external/ImageMagick/MagickCore/
Dexception-private.h29 #define ThrowBinaryException(severity,tag,context) \ argument
35 #define ThrowFatalException(severity,tag) \ argument
53 #define ThrowFileException(exception,severity,tag,context) \ argument
64 #define ThrowImageException(severity,tag) \ argument
70 #define ThrowReaderException(severity,tag) \ argument
81 #define ThrowWriterException(severity,tag) \ argument
/external/cronet/base/allocator/partition_allocator/partition_alloc_base/fuchsia/
Dfuchsia_logging.h41 #define PA_ZX_LOG_STREAM(severity, zx_err) \ argument
44 #define PA_ZX_LOG(severity, zx_err) \ argument
46 #define PA_ZX_LOG_IF(severity, condition, zx_err) \ argument
54 #define PA_ZX_DLOG(severity, zx_err) \ argument
58 #define PA_ZX_DLOG_IF(severity, condition, zx_err) \ argument
62 #define PA_ZX_DLOG_IF(severity, condition, zx_err) PA_EAT_STREAM_PARAMETERS argument
/external/cronet/base/allocator/partition_allocator/partition_alloc_base/
Dlogging.h250 #define PA_LOG_IS_ON(severity) \ argument
276 #define PA_LOG_STREAM(severity) PA_COMPACT_GOOGLE_LOG_##severity.stream() argument
278 #define PA_LOG(severity) \ argument
280 #define PA_LOG_IF(severity, condition) \ argument
324 #define PA_PLOG_STREAM(severity) \ argument
330 #define PA_PLOG_STREAM(severity) \ argument
337 #define PA_PLOG(severity) \ argument
340 #define PA_PLOG_IF(severity, condition) \ argument
367 #define PA_DLOG_IS_ON(severity) PA_LOG_IS_ON(severity) argument
368 #define PA_DLOG_IF(severity, condition) PA_LOG_IF(severity, condition) argument
[all …]
/external/cronet/base/fuchsia/
Dfuchsia_logging.h45 #define ZX_LOG_STREAM(severity, zx_status) \ argument
48 #define ZX_LOG(severity, zx_status) \ argument
50 #define ZX_LOG_IF(severity, condition, zx_status) \ argument
58 #define ZX_DLOG(severity, zx_status) \ argument
62 #define ZX_DLOG_IF(severity, condition, zx_status) \ argument
66 #define ZX_DLOG_IF(severity, condition, zx_status) EAT_STREAM_PARAMETERS argument
/external/cronet/base/mac/
Dmach_logging.h60 #define MACH_LOG_STREAM(severity, mach_err) \ argument
66 #define MACH_LOG(severity, mach_err) \ argument
68 #define MACH_LOG_IF(severity, condition, mach_err) \ argument
83 #define MACH_DLOG(severity, mach_err) \ argument
85 #define MACH_DLOG_IF(severity, condition, mach_err) \ argument
125 #define BOOTSTRAP_LOG_STREAM(severity, bootstrap_err) \ argument
132 #define BOOTSTRAP_LOG(severity, bootstrap_err) \ argument
135 #define BOOTSTRAP_LOG_IF(severity, condition, bootstrap_err) \ argument
150 #define BOOTSTRAP_DLOG(severity, bootstrap_err) \ argument
153 #define BOOTSTRAP_DLOG_IF(severity, condition, bootstrap_err) \ argument
/external/cronet/third_party/abseil-cpp/absl/base/internal/
Draw_logging.h44 #define ABSL_RAW_LOG(severity, ...) \ argument
75 #define ABSL_INTERNAL_LOG(severity, message) \ argument
95 #define ABSL_RAW_DLOG(severity, ...) ABSL_RAW_LOG(severity, __VA_ARGS__) argument
100 #define ABSL_RAW_DLOG(severity, ...) \ argument
111 #define ABSL_RAW_LOG_INTERNAL_LEVEL(severity) \ argument
118 #define ABSL_RAW_LOG_INTERNAL_MAYBE_UNREACHABLE_LEVEL(severity) argument
/external/angle/third_party/abseil-cpp/absl/base/internal/
Draw_logging.h44 #define ABSL_RAW_LOG(severity, ...) \ argument
75 #define ABSL_INTERNAL_LOG(severity, message) \ argument
95 #define ABSL_RAW_DLOG(severity, ...) ABSL_RAW_LOG(severity, __VA_ARGS__) argument
100 #define ABSL_RAW_DLOG(severity, ...) \ argument
111 #define ABSL_RAW_LOG_INTERNAL_LEVEL(severity) \ argument
118 #define ABSL_RAW_LOG_INTERNAL_MAYBE_UNREACHABLE_LEVEL(severity) argument
/external/cronet/base/
Dlogging.h441 #define LOG_IS_ON(severity) \ argument
506 #define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity.stream() argument
508 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity)) argument
509 #define LOG_IF(severity, condition) \ argument
547 #define PLOG_STREAM(severity) \ argument
551 #define PLOG_STREAM(severity) \ argument
556 #define PLOG(severity) \ argument
559 #define PLOG_IF(severity, condition) \ argument
584 #define DLOG_IS_ON(severity) LOG_IS_ON(severity) argument
585 #define DLOG_IF(severity, condition) LOG_IF(severity, condition) argument
[all …]
/external/icing/icing/util/
Dlogging_raw.cc34 int GetAndroidLogLevel(LogSeverity::Code severity) { in GetAndroidLogLevel()
52 void LowLevelLogging(LogSeverity::Code severity, const std::string& tag, in LowLevelLogging()
75 const char *LogSeverityToString(LogSeverity::Code severity) { in LogSeverityToString()
93 void LowLevelLogging(LogSeverity::Code severity, const std::string &tag, in LowLevelLogging()
/external/turbine/java/com/google/turbine/diag/
DTurbineDiagnostic.java35 private final Diagnostic.Kind severity; field in TurbineDiagnostic
42 Diagnostic.Kind severity, in TurbineDiagnostic()
63 public Diagnostic.Kind severity() { in severity() method in TurbineDiagnostic
94 Diagnostic.Kind severity, in create()
114 public static TurbineDiagnostic format(Diagnostic.Kind severity, ErrorKind kind, String message) { in format()
137 Diagnostic.Kind severity, SourceFile source, int position, ErrorKind kind, Object... args) { in format()
/external/libtextclassifier/native/utils/base/
Dlogging_raw.cc40 int GetAndroidLogLevel(LogSeverity severity) { in GetAndroidLogLevel()
56 void LowLevelLogging(LogSeverity severity, const std::string& tag, in LowLevelLogging()
76 const char *LogSeverityToString(LogSeverity severity) { in LogSeverityToString()
92 void LowLevelLogging(LogSeverity severity, const std::string &tag, in LowLevelLogging()
/external/libtextclassifier/native/lang_id/common/lite_base/
Dcompact-logging-raw.cc36 int GetAndroidLogLevel(LogSeverity severity) { in GetAndroidLogLevel()
52 void LowLevelLogging(LogSeverity severity, const std::string &tag, in LowLevelLogging()
77 const char *LogSeverityToString(LogSeverity severity) { in LogSeverityToString()
93 void LowLevelLogging(LogSeverity severity, const std::string &tag, in LowLevelLogging()
/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
Dtrt_logger.cc64 void Logger::log(Severity severity, const char* msg) noexcept { in log()
96 void Logger::suppressLoggerMsgs(Severity severity) { in suppressLoggerMsgs()
102 void Logger::unsuppressLoggerMsgs(Severity severity) { in unsuppressLoggerMsgs()
108 bool Logger::isValidSeverity(Severity severity, const char* msg) noexcept { in isValidSeverity()
/external/icing/icing/text_classifier/lib3/utils/base/
Dlogging_raw.cc38 int GetAndroidLogLevel(LogSeverity severity) { in GetAndroidLogLevel()
54 void LowLevelLogging(LogSeverity severity, const std::string& tag, in LowLevelLogging()
74 const char *LogSeverityToString(LogSeverity severity) { in LogSeverityToString()
90 void LowLevelLogging(LogSeverity severity, const std::string &tag, in LowLevelLogging()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/channel/
Dchannel_trace.cc44 ChannelTrace::TraceEvent::TraceEvent(Severity severity, const grpc_slice& data, in TraceEvent()
54 ChannelTrace::TraceEvent::TraceEvent(Severity severity, const grpc_slice& data) in TraceEvent()
112 void ChannelTrace::AddTraceEvent(Severity severity, const grpc_slice& data) { in AddTraceEvent()
121 Severity severity, const grpc_slice& data, in AddTraceEventWithReference()
134 const char* severity_string(ChannelTrace::Severity severity) { in severity_string()
/external/grpc-grpc/src/core/lib/channel/
Dchannel_trace.cc44 ChannelTrace::TraceEvent::TraceEvent(Severity severity, grpc_slice data, in TraceEvent()
53 ChannelTrace::TraceEvent::TraceEvent(Severity severity, grpc_slice data) in TraceEvent()
106 void ChannelTrace::AddTraceEvent(Severity severity, grpc_slice data) { in AddTraceEvent()
112 Severity severity, grpc_slice data, in AddTraceEventWithReference()
122 const char* severity_string(ChannelTrace::Severity severity) { in severity_string()

12345678910>>...17