Home | History | Annotate | Download | only in src

Lines Matching refs:CHECK

55 // The CHECK macro checks that the given condition is true; if not, it
57 #define CHECK(condition) do { \
59 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
114 // Helper function used by the CHECK function when given string
146 // Helper function used by the CHECK function when given pointer
176 // Helper function used by the CHECK function when given floating
242 #define CHECK_GT(a, b) CHECK((a) > (b))
243 #define CHECK_GE(a, b) CHECK((a) >= (b))
244 #define CHECK_LT(a, b) CHECK((a) < (b))
245 #define CHECK_LE(a, b) CHECK((a) <= (b))
285 CHECK(!v8::internal::FLAG_enable_slow_asserts || (condition))
295 // The ASSERT macro is equivalent to CHECK except that it only
298 #define ASSERT_RESULT(expr) CHECK(expr)
299 #define ASSERT(condition) CHECK(condition)
326 #define EXTRA_CHECK(condition) CHECK(condition)