| /arkcompiler/ets_frontend/ts2panda/tests/expression/ |
| D | operationEqual.test.ts | 48 let lhs = new VReg(); variable 68 let lhs = new VReg(); variable 88 let lhs = new VReg(); variable 108 let lhs = new VReg(); variable 128 let lhs = new VReg(); variable 148 let lhs = new VReg(); variable 168 let lhs = new VReg(); variable 188 let lhs = new VReg(); variable 209 let lhs = new VReg(); variable
|
| D | binary.test.ts | 61 let lhs = new VReg(); variable 75 let lhs = new VReg(); variable 148 let lhs = new VReg(); variable 179 let lhs = new VReg(); variable 193 let lhs = new VReg(); variable 207 let lhs = new VReg(); variable 221 let lhs = new VReg(); variable 235 let lhs = new VReg(); variable 249 let lhs = new VReg(); variable 263 let lhs = new VReg(); variable [all …]
|
| D | cmpBinary.test.ts | 59 let lhs = new VReg(); variable 82 let lhs = new VReg(); variable 105 let lhs = new VReg(); variable 128 let lhs = new VReg(); variable 151 let lhs = new VReg(); variable 174 let lhs = new VReg(); variable 197 let lhs = new VReg(); variable 220 let lhs = new VReg(); variable 244 let lhs = new VReg(); variable 263 let lhs = new VReg(); variable [all …]
|
| D | logicBinary.test.ts | 39 let lhs = new VReg(); variable 61 let lhs = new VReg(); variable
|
| D | conditions.test.ts | 106 let lhs = new VReg(); variable
|
| /arkcompiler/ets_frontend/ts2panda/tests/statements/ |
| D | while.test.ts | 66 let lhs = new VReg(); variable 93 let lhs = new VReg(); variable 126 let lhs = new VReg(); variable 159 let lhs = new VReg(); variable
|
| D | doWhile.test.ts | 73 let lhs = new VReg(); variable 109 let lhs = new VReg(); variable
|
| D | for.test.ts | 110 let lhs = new VReg(); variable 152 let lhs = new VReg(); variable 202 let lhs = new VReg(); variable 277 let lhs = new VReg(); variable
|
| /arkcompiler/runtime_core/libpandabase/ |
| D | macros.h | 146 #define ASSERT_OP(lhs, op, rhs) do { \ argument 159 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) argument 161 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) argument 163 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) argument 165 #define CHECK_GT(lhs, rhs) ASSERT_OP(lhs, >, rhs) argument 167 #define CHECK_EQ(lhs, rhs) ASSERT_OP(lhs, ==, rhs) argument 169 #define CHECK_NE(lhs, rhs) ASSERT_OP(lhs, !=, rhs) argument 207 #define ASSERT_OP(lhs, op, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument 208 #define CHECK_LE(lhs, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument 209 #define CHECK_LT(lhs, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument [all …]
|
| /arkcompiler/toolchain/tooling/test/utils/ |
| D | test_util.h | 242 #define ASSERT_EQ(lhs, rhs) \ argument 251 #define ASSERT_NE(lhs, rhs) \ argument 260 #define ASSERT_STREQ(lhs, rhs) \ argument 285 #define ASSERT_LOCATION_EQ(lhs, rhs) \ argument
|
| /arkcompiler/ets_frontend/es2panda/ir/expressions/ |
| D | binaryExpression.cpp | 44 compiler::VReg lhs = pg->AllocReg(); in CompileLogical() local 89 compiler::VReg lhs = pg->AllocReg(); in Compile() local
|
| D | templateLiteral.cpp | 54 compiler::VReg lhs = pg->AllocReg(); in Compile() local
|
| /arkcompiler/runtime_core/verification/value/ |
| D | var_binding.h | 33 void Equate(Variables::Var lhs, Variable::Var rhs) in Equate()
|
| /arkcompiler/runtime_core/runtime/tests/tooling/ |
| D | test_util.h | 253 #define ASSERT_EQ(lhs, rhs) \ argument 262 #define ASSERT_NE(lhs, rhs) \ argument 271 #define ASSERT_STREQ(lhs, rhs) \ argument 296 #define ASSERT_LOCATION_EQ(lhs, rhs) \ argument
|
| /arkcompiler/runtime_core/verification/type/ |
| D | type_system.h | 178 void Relate(TypeNum lhs, TypeNum rhs) in Relate() 210 bool CheckIfLhsParamsSubtypeOfRhs(const TypeParamsIdx &lhs, const TypeParamsIdx &rhs) const in CheckIfLhsParamsSubtypeOfRhs() 241 bool CheckIfLhsSubtypeOfRhs(TypeNum lhs, TypeNum rhs) const in CheckIfLhsSubtypeOfRhs() 253 bool IsInDirectRelation(TypeNum lhs, TypeNum rhs) const in IsInDirectRelation()
|
| /arkcompiler/ets_frontend/es2panda/compiler/base/ |
| D | condition.cpp | 44 VReg lhs = pg->AllocReg(); in Compile() local
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | type_converter.cpp | 63 bool operator==(const ValueUnit &lhs, const ValueUnit &rhs) in operator ==() 82 bool operator!=(const ValueUnit &lhs, const ValueUnit &rhs) in operator !=()
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | balance_expressions.cpp | 135 Inst *lhs = GetOperand(first_idx, split_idx); in AllocateSourcesRec() local 175 Inst *BalanceExpressions::GenerateElementalOperator(Inst *lhs, Inst *rhs) in GenerateElementalOperator()
|
| /arkcompiler/runtime_core/compiler/tests/x86/ |
| D | asmjit_test.cpp | 62 x86::Gp lhs = a.zax(); in TEST_F() local 104 x86::Gp lhs = a.zax(); in TEST_F() local
|
| /arkcompiler/runtime_core/compiler/tests/amd64/ |
| D | asmjit_test.cpp | 86 x86::Gp lhs = a.zax(); in TEST_F() local 177 x86::Gp lhs = a.zax(); in TEST_F() local
|
| /arkcompiler/runtime_core/verification/util/ |
| D | lazy.h | 332 auto JoinStreams(LHS lhs, RHS rhs) in JoinStreams() 349 auto JoinStreams(LHS lhs, MHS mhs, RHS rhs) in JoinStreams()
|
| D | set_operations.h | 83 S SetDifference(const S &lhs, const S &rhs) in SetDifference()
|
| D | relation.h | 59 void SymmRelate(RelIndex lhs, RelIndex rhs) in SymmRelate()
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | serializer_test.cpp | 77 bool operator==(const PodStruct &lhs, const PodStruct &rhs) in operator ==() 165 bool operator==(const TestStruct &lhs, const TestStruct &rhs) in operator ==()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | linear_order.cpp | 86 …auto cmp = [](BasicBlock *lhs, BasicBlock *rhs) { return lhs->GetGuestPc() >= rhs->GetGuestPc(); }; in AddSortedByPc()
|