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

  /system/core/adb/
adb_trace.h 43 #define VLOG_IS_ON(TAG) \
47 if (LIKELY(!VLOG_IS_ON(TAG))) \
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
logging.h 92 #define VLOG_IS_ON(lvl) ((lvl) <= LogMessage::MinVLogLevel())
95 if (TF_PREDICT_FALSE(VLOG_IS_ON(lvl))) \
  /frameworks/ml/nn/common/include/
Utils.h 60 #define VLOG_IS_ON(TAG) \
64 if (LIKELY(!VLOG_IS_ON(TAG))) \
  /art/libartbase/base/
logging.h 35 // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code,
102 #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module)
106 #define VLOG(module) if (VLOG_IS_ON(module)) LOG(INFO)
  /external/tensorflow/tensorflow/core/platform/default/
logging.h 81 #define VLOG_IS_ON(lvl) ((lvl) <= 0)
85 #define VLOG_IS_ON(lvl) \
90 if (TF_PREDICT_FALSE(VLOG_IS_ON(lvl))) \
  /external/libchrome/base/
logging.h 106 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
108 // if (VLOG_IS_ON(2)) {
355 // We can't do any caching tricks with VLOG_IS_ON() like the
359 #define VLOG_IS_ON(verboselevel) \
386 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
390 VLOG_IS_ON(verbose_level) && (condition))
403 LAZY_STREAM(VPLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
407 VLOG_IS_ON(verbose_level) && (condition))
756 #define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
758 #define DVPLOG(verboselevel) DVPLOG_IF(verboselevel, VLOG_IS_ON(verboselevel)
    [all...]

Completed in 137 milliseconds