Home | History | Annotate | Download | only in android-base

Lines Matching defs:CHECK

52 //   CHECK(must_be_true);
214 // 1) This will not check whether the severity is high enough. One should use WOULD_LOG to filter
261 // Check whether condition x holds and LOG(FATAL) if not. The value of the
265 // CHECK(false == true) results in a log message of
266 // "Check failed: false == true".
267 #define CHECK(x) \
272 << "Check failed: " #x << " "
284 << "Check failed: " << #LHS << " " << #OP << " " << #RHS << " (" #LHS "=" << _values.lhs \
288 // Check whether a condition holds between x and y, LOG(FATAL) if not. The value
293 // "Check failed: false != false (0==1=false, false=false) ".
309 << "Check failed: " << "\"" << (s1) << "\"" \
313 // Check for string (const char*) equality between s1 and s2, LOG(FATAL) if not.
328 // CHECK that can be used in a constexpr function. For example:
339 ? (LOG(FATAL) << "Check failed: " << #x out, dummy) \
343 // CHECK should be used unless profiling identifies a CHECK as being in
352 if (::android::base::kEnableDChecks) CHECK(x)
423 // of a CHECK. The destructor will abort if the severity is FATAL.