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

/art/runtime/base/
H A Dlogging.h177 static constexpr bool kEnableDChecks = false; member in namespace:art
179 static constexpr bool kEnableDChecks = true; member in namespace:art
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_STRE
[all...]

Completed in 61 milliseconds