Lines Matching refs:condition
24 #define CPPGC_DCHECK_MSG(condition, message) \
26 if (V8_UNLIKELY(!(condition))) { \
31 #define CPPGC_DCHECK_MSG(condition, message) \
33 static_cast<void>(condition), message)>{}))
36 #define CPPGC_DCHECK(condition) CPPGC_DCHECK_MSG(condition, #condition)
38 #define CPPGC_CHECK_MSG(condition, message) \
40 if (V8_UNLIKELY(!(condition))) { \
45 #define CPPGC_CHECK(condition) CPPGC_CHECK_MSG(condition, #condition)