Home
last modified time | relevance | path

Searched refs:kEnableDChecks (Results 1 – 1 of 1) sorted by relevance

/art/runtime/base/
Dlogging.h172 static constexpr bool kEnableDChecks = false; variable
174 static constexpr bool kEnableDChecks = true; variable
177 #define DCHECK(x) if (::art::kEnableDChecks) CHECK(x)
178 #define DCHECK_EQ(x, y) if (::art::kEnableDChecks) CHECK_EQ(x, y)
179 #define DCHECK_NE(x, y) if (::art::kEnableDChecks) CHECK_NE(x, y)
180 #define DCHECK_LE(x, y) if (::art::kEnableDChecks) CHECK_LE(x, y)
181 #define DCHECK_LT(x, y) if (::art::kEnableDChecks) CHECK_LT(x, y)
182 #define DCHECK_GE(x, y) if (::art::kEnableDChecks) CHECK_GE(x, y)
183 #define DCHECK_GT(x, y) if (::art::kEnableDChecks) CHECK_GT(x, y)
184 #define DCHECK_STREQ(s1, s2) if (::art::kEnableDChecks) CHECK_STREQ(s1, s2)
[all …]