Searched defs:LOG_IF (Results 1 - 8 of 8) sorted by path

/external/ceres-solver/internal/ceres/miniglog/glog/
H A Dlogging.h295 #define LOG_IF(severity, condition) \ macro
300 #define LOG_IF_FALSE(severity, condition) LOG_IF(severity, !(condition))
306 # define LOG(n) LOG_IF(n, n <= MAX_LOG_LEVEL)
307 # define VLOG(n) LOG_IF(n, n <= MAX_LOG_LEVEL)
308 # define LG LOG_IF(INFO, INFO <= MAX_LOG_LEVEL)
309 # define VLOG_IF(n, condition) LOG_IF(n, (n <= MAX_LOG_LEVEL) && condition)
314 # define VLOG_IF(n, condition) LOG_IF(n, condition)
/external/chromium_org/base/
H A Dlogging.h53 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
66 // compiles. LOG_IF and development flags also work well together
74 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
301 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
368 #define LOG_IF(severity, condition) \ macro
372 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
405 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
553 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
893 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_debug.h33 #define LOG_IF(cond, ...) \ macro
/external/chromium_org/third_party/cld/base/
H A Dlogging.h47 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
93 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
396 #define LOG_IF(severity, condition) \ macro
402 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition
411 LOG_IF(FATAL, PREDICT_FALSE(!(condition))) \
420 LOG_IF(QFATAL, PREDICT_FALSE(!(condition))) \
741 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
830 #define VLOG(verboselevel) LOG_IF(INFO, VLOG_IS_ON(verboselevel))
833 LOG_IF(INFO, (condition) && VLOG_IS_ON(verboselevel))
848 #define MLOG(verboselevel) LOG_IF(INF
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlogging.h265 inline void LOG_IF(int lvl, bool cond, const char* pat, ...) { function
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlogging.h231 inline void LOG_IF(int lvl, bool cond, const char* pat, ...) { function
/external/chromium_org/tools/relocation_packer/src/
H A Ddebug.h10 // LOG_IF(tag, predicate) logs if predicate evaluates to true, else silent.
90 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
95 #define LOG_IF(severity, predicate) \ macro
106 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
/external/qemu/android/base/
H A DLog.h92 // It's possible to do conditional logging with LOG_IF()
104 // LOG_IF(INFO, fuelInjector::hasOptimalLevel())
107 #define LOG_IF(severity, condition) \ macro
120 // A variant of LOG_IF() that also appends the string message corresponding
137 LOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". "
201 #define DLOG(severity) LOG_IF(severity, DLOG_IS_ON())
206 LOG_IF(severity, DLOG_IS_ON() && (condition))
213 LOG_IF(FATAL, DCHECK_IS_ON() && !(condition)) \

Completed in 2347 milliseconds