HomeSort by relevance Sort by last modified time
    Searched refs:kEnableDChecks (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/
logging.h 177 static constexpr bool kEnableDChecks = false;
179 static constexpr bool kEnableDChecks = true;
182 #define DCHECK(x) if (::art::kEnableDChecks) CHECK(x)
183 #define DCHECK_EQ(x, y) if (::art::kEnableDChecks) CHECK_EQ(x, y)
184 #define DCHECK_NE(x, y) if (::art::kEnableDChecks) CHECK_NE(x, y)
185 #define DCHECK_LE(x, y) if (::art::kEnableDChecks) CHECK_LE(x, y)
186 #define DCHECK_LT(x, y) if (::art::kEnableDChecks) CHECK_LT(x, y)
187 #define DCHECK_GE(x, y) if (::art::kEnableDChecks) CHECK_GE(x, y)
188 #define DCHECK_GT(x, y) if (::art::kEnableDChecks) CHECK_GT(x, y)
189 #define DCHECK_STREQ(s1, s2) if (::art::kEnableDChecks) CHECK_STREQ(s1, s2
    [all...]
  /system/core/base/include/android-base/
logging.h 226 static constexpr bool kEnableDChecks = false;
228 static constexpr bool kEnableDChecks = true;
232 if (::android::base::kEnableDChecks) CHECK(x)
234 if (::android::base::kEnableDChecks) CHECK_EQ(x, y)
236 if (::android::base::kEnableDChecks) CHECK_NE(x, y)
238 if (::android::base::kEnableDChecks) CHECK_LE(x, y)
240 if (::android::base::kEnableDChecks) CHECK_LT(x, y)
242 if (::android::base::kEnableDChecks) CHECK_GE(x, y)
244 if (::android::base::kEnableDChecks) CHECK_GT(x, y)
246 if (::android::base::kEnableDChecks) CHECK_STREQ(s1, s2
    [all...]

Completed in 1613 milliseconds