HomeSort by relevance Sort by last modified time
    Searched defs:LOG_IF (Results 1 - 5 of 5) sorted by null

  /bionic/tools/relocation_packer/src/
debug.h 10 // 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) \
106 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 295 #define LOG_IF(severity, condition) \
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/libweave/third_party/chromium/base/
logging.h 55 // 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) \
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;\
  /system/extras/perfprofd/quipper/base/
logging.h 27 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
40 // compiles. LOG_IF and development flags also work well together
48 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
141 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
189 #define LOG_IF(severity, condition) \
206 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
325 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
665 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\
  /external/libchrome/base/
logging.h 56 // 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) \
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)
    [all...]

Completed in 192 milliseconds