Searched refs:ASSERT_OP (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/ |
H A D | macros.h | 146 #define ASSERT_OP(lhs, op, rhs) \ macro 160 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) 162 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) 164 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) 166 #define CHECK_GT(lhs, rhs) ASSERT_OP(lhs, >, rhs) 168 #define CHECK_EQ(lhs, rhs) ASSERT_OP(lhs, ==, rhs) 170 #define CHECK_NE(lhs, rhs) ASSERT_OP(lhs, !=, rhs) 208 #define ASSERT_OP(lhs, op, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) macro
|
/arkcompiler/runtime_core/libpandabase/ |
H A D | macros.h | 169 #define ASSERT_OP(lhs, op, rhs) do { \ macro 182 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) 184 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) 186 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) 188 #define CHECK_GT(lhs, rhs) ASSERT_OP(lhs, >, rhs) 190 #define CHECK_EQ(lhs, rhs) ASSERT_OP(lhs, ==, rhs) 192 #define CHECK_NE(lhs, rhs) ASSERT_OP(lhs, !=, rhs) 230 #define ASSERT_OP(lhs, op, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) macro
|
Completed in 2 milliseconds