Lines Matching refs:rhs
254 #define ASSERT_EQ(lhs, rhs) \ argument
257 decltype(res1) res2 = (rhs); \
259 ASSERT_FAIL_(res1, res2, #lhs, #rhs, "equal to"); \
263 #define ASSERT_NE(lhs, rhs) \ argument
266 decltype(res1) res2 = (rhs); \
268 ASSERT_FAIL_(res1, res2, #lhs, #rhs, "not equal to"); \
272 #define ASSERT_STREQ(lhs, rhs) \ argument
275 decltype(res1) res2 = (rhs); \
277 ASSERT_FAIL_(res1, res2, #lhs, #rhs, "equal to"); \
297 #define ASSERT_LOCATION_EQ(lhs, rhs) \ argument
299 ASSERT_EQ((lhs).GetJsPandaFile(), (rhs).GetJsPandaFile()); \
300 ASSERT_EQ((lhs).GetMethodId().GetOffset(), (rhs).GetMethodId().GetOffset()); \
301 ASSERT_EQ((lhs).GetBytecodeOffset(), (rhs).GetBytecodeOffset()); \