Home | History | Annotate | Download | only in stubs

Lines Matching refs:EXPRESSION

253 // The expression is a compile-time constant, and therefore can be
357 // expression is true. For example, you could use it to verify the
368 // the expression is false, most compilers will issue a warning/error
388 // elements (and thus is invalid) when the expression is false.
671 // Used to make the entire "LOG(BLAH) << etc." expression have a void return
712 #define GOOGLE_CHECK(EXPRESSION) \
713 GOOGLE_LOG_IF(FATAL, !(EXPRESSION)) << "CHECK failed: " #EXPRESSION ": "
737 #define GOOGLE_DCHECK(EXPRESSION) while(false) GOOGLE_CHECK(EXPRESSION)