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

  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 296 #define LOG_IF(severity, condition) \
309 #define CHECK(condition) LOG_IF(FATAL, condition) \
314 #define DCHECK(condition) LOG_IF(FATAL, condition) \
318 #define DCHECK(condition) if (false) LOG_IF(FATAL, condition) \
326 #define CHECK_OP(val1, val2, op) LOG_IF(FATAL, (val1 op val2)) \
  /external/chromium/googleurl/base/
logging.h 49 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
62 // compiles. LOG_IF and development flags also work well together
70 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
159 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
193 #define LOG_IF(severity, condition) \
195 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
198 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
241 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
247 LOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". "
  /external/chromium/base/
logging.h 52 // 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;
299 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
370 #define LOG_IF(severity, condition) \
374 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
407 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
560 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
    [all...]

Completed in 328 milliseconds