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

/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlogging.h261 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/ceres-solver/internal/ceres/miniglog/glog/
H A Dlogging.h259 #define LOG_IF(severity, condition) \ macro
264 #define LOG_IF_FALSE(severity, condition) LOG_IF(severity, !(condition))
270 #define LOG(n) LOG_IF(n, n <= MAX_LOG_LEVEL)
271 #define VLOG(n) LOG_IF(n, n <= MAX_LOG_LEVEL)
272 #define LG LOG_IF(INFO, INFO <= MAX_LOG_LEVEL)
/external/chromium/googleurl/base/
H A Dlogging.h49 // 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) \ macro
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/
H A Dlogging.h52 // 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) \ macro
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)
936 LOG_IF(ERROR, 0 == count++) << NOTIMPLEMENTED_MSG;\
/external/chromium_org/base/
H A Dlogging.h53 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
70 // compiles. LOG_IF and development flags also work well together
78 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
326 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
399 #define LOG_IF(severity, condition) \ macro
403 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
436 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
620 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
1021 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\
/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...]

Completed in 131 milliseconds