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

/art/runtime/base/
H A Dlogging.h116 // CHECK(false == true) results in a log message of "Check failed: false == true".
117 #define CHECK(x) \ macro
163 // CHECK that can be used in a constexpr function. For example,
174 // DCHECKs are debug variants of CHECKs only enabled in debug builds. Generally CHECK should be
175 // used unless profiling identifies a CHECK as being in performance critical code.
182 #define DCHECK(x) if (::art::kEnableDChecks) CHECK(x)
239 // A LogMessage is a temporarily scoped object used by LOG and the unlikely part of a CHECK. The

Completed in 1311 milliseconds