Home | History | Annotate | Download | only in base

Lines Matching refs:condition

108 // values, and there is a race condition that may leak a critical section
193 #define LOG_IF(severity, condition) \
194 !(condition) ? (void) 0 : logging::LogMessageVoidify() & LOG(severity)
195 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
197 #define LOG_ASSERT(condition) \
198 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
199 #define SYSLOG_ASSERT(condition) \
200 SYSLOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
241 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
242 #define DLOG_ASSERT(condition) LOG_ASSERT(condition)
246 #define DCHECK(condition) \
247 LOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". "
344 #define DLOG_IF(severity, condition) \
347 #define DLOG_ASSERT(condition) \
348 true ? (void) 0 : LOG_ASSERT(condition)
359 #define DCHECK(condition) \