Lines Matching refs:condition
54 // The CHECK macro checks that the given condition is true; if not, it
56 #define CHECK(condition) do { \
57 if (!(condition)) { \
58 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
242 // Causes an error during compilation of the condition is not
261 #define ASSERT(condition) CHECK(condition)
267 #define SLOW_ASSERT(condition) CHECK(!FLAG_enable_slow_asserts || (condition))
270 #define ASSERT(condition) ((void) 0)
276 #define SLOW_ASSERT(condition) ((void) 0)