Searched defs:LOG_IF (Results 1 - 3 of 3) sorted by relevance

/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/libchrome/base/
H A Dlogging.h56 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
69 // compiles. LOG_IF and development flags also work well together
77 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
335 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
402 #define LOG_IF(severity, condition) \ macro
406 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
439 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
626 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
978 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\
/external/libweave/third_party/chromium/base/
H A Dlogging.h55 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
68 // compiles. LOG_IF and development flags also work well together
76 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
289 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
342 #define LOG_IF(severity, condition) \ macro
346 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
360 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
505 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
728 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\

Completed in 101 milliseconds