Home | History | Annotate | Download | only in src

Lines Matching refs:condition

60                                bool condition) {
61 if (!condition)
66 // The CHECK macro checks that the given condition is true; if not, it
68 #define CHECK(condition) CheckHelper(__FILE__, __LINE__, #condition, condition)
248 // Causes an error during compilation of the condition is not
264 #define ASSERT(condition) CHECK(condition)
268 #define SLOW_ASSERT(condition) if (FLAG_enable_slow_asserts) CHECK(condition)
271 #define ASSERT(condition) ((void) 0)
275 #define SLOW_ASSERT(condition) ((void) 0)