Searched defs:DCHECK_IS_ON (Results 1 - 2 of 2) sorted by relevance

/external/qemu/android/base/
H A DLog.h180 // DCHECK_IS_ON() is used to indicate whether DCHECK() should do anything.
184 # define DCHECK_IS_ON() false macro
186 # define DCHECK_IS_ON() ::android::base::dcheckIsEnabled() macro
188 # define DCHECK_IS_ON() true macro
213 LOG_IF(FATAL, DCHECK_IS_ON() && !(condition)) \
/external/chromium_org/base/
H A Dlogging.h543 #define DCHECK_IS_ON 0 macro
545 #define DCHECK_IS_ON 1
599 #if DCHECK_IS_ON
606 #else // DCHECK_IS_ON
614 #endif // DCHECK_IS_ON
622 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON && !(condition)) \
626 LAZY_STREAM(PLOG_STREAM(DCHECK), DCHECK_IS_ON && !(condition)) \
632 if (DCHECK_IS_ON) \

Completed in 554 milliseconds