Searched defs:RTC_CHECK_EQ (Results 1 - 1 of 1) sorted by relevance

/external/webrtc/webrtc/base/
H A Dchecks.h49 // - RTC_CHECK_EQ, _NE, _GT, ..., and RTC_DCHECK_EQ, _NE, _GT, ... are
88 // Don't use this macro directly in your code, use RTC_CHECK_EQ et al below.
91 // RTC_CHECK_EQ(...) else { ... } work properly.
156 #define RTC_CHECK_EQ(val1, val2) RTC_CHECK_OP(EQ, ==, val1, val2) macro
169 #define RTC_DCHECK_EQ(v1, v2) RTC_CHECK_EQ(v1, v2)
207 // Used for RTC_CHECK_EQ(), etc. Takes ownership of the given string.
223 RTC_CHECK_EQ(a % b, static_cast<T>(0));

Completed in 80 milliseconds