Lines Matching refs:condition
55 // The CHECK macro checks that the given condition is true; if not, it
57 #define CHECK(condition) do { \
58 if (!(condition)) { \
59 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
262 // Causes an error during compilation of the condition is not
284 #define SLOW_ASSERT(condition) \
285 CHECK(!v8::internal::FLAG_enable_slow_asserts || (condition))
288 #define SLOW_ASSERT(condition) ((void) 0)
299 #define ASSERT(condition) CHECK(condition)
307 #define ASSERT(condition) ((void) 0)
326 #define EXTRA_CHECK(condition) CHECK(condition)
328 #define EXTRA_CHECK(condition) ((void) 0)