Searched defs:rightType (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/ets_frontend/es2panda/typescript/core/ |
| D | binaryLikeExpression.cpp | 23 Type *Checker::CheckBinaryOperator(Type *leftType, Type *rightType, const ir::Expression *leftExpr, in CheckBinaryOperator() 94 Type *Checker::CheckPlusOperator(Type *leftType, Type *rightType, const ir::Expression *leftExpr, in CheckPlusOperator() 126 Type *Checker::CheckCompareOperator(Type *leftType, Type *rightType, const ir::Expression *leftExpr, in CheckCompareOperator() 142 Type *Checker::CheckAndOperator(Type *leftType, Type *rightType, const ir::Expression *leftExpr) in CheckAndOperator() 154 Type *Checker::CheckOrOperator(Type *leftType, Type *rightType, const ir::Expression *leftExpr) in CheckOrOperator() 173 Type *Checker::CheckInstanceofExpression(Type *leftType, Type *rightType, const ir::Expression *rig… in CheckInstanceofExpression() 192 Type *Checker::CheckInExpression(Type *leftType, Type *rightType, const ir::Expression *leftExpr, in CheckInExpression()
|
| D | helpers.cpp | 280 void Checker::ThrowBinaryLikeError(lexer::TokenType op, Type *leftType, Type *rightType, lexer::Sou… in ThrowBinaryLikeError()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | ts_type_lowering.cpp | 365 GateType rightType = acc_.GetGateType(right); in LowerTypedAdd() local 378 GateType rightType = acc_.GetGateType(right); in LowerTypedSub() local 391 GateType rightType = acc_.GetGateType(right); in LowerTypedMul() local 404 GateType rightType = acc_.GetGateType(right); in LowerTypedMod() local 417 GateType rightType = acc_.GetGateType(right); in LowerTypedLess() local 430 GateType rightType = acc_.GetGateType(right); in LowerTypedLessEq() local 443 GateType rightType = acc_.GetGateType(right); in LowerTypedGreater() local 456 GateType rightType = acc_.GetGateType(right); in LowerTypedGreaterEq() local 469 GateType rightType = acc_.GetGateType(right); in LowerTypedDiv() local 482 GateType rightType = acc_.GetGateType(right); in LowerTypedEq() local [all …]
|
| D | type_lowering.cpp | 411 auto rightType = acc_.GetRightType(gate); in LowerTypeConvert() local 851 auto rightType = acc_.GetRightType(gate); in LowerTypedAdd() local 862 auto rightType = acc_.GetRightType(gate); in LowerTypedSub() local 873 auto rightType = acc_.GetRightType(gate); in LowerTypedMul() local 884 auto rightType = acc_.GetRightType(gate); in LowerTypedMod() local 895 auto rightType = acc_.GetRightType(gate); in LowerTypedLess() local 906 auto rightType = acc_.GetRightType(gate); in LowerTypedLessEq() local 917 auto rightType = acc_.GetRightType(gate); in LowerTypedGreater() local 928 auto rightType = acc_.GetRightType(gate); in LowerTypedGreaterEq() local 939 auto rightType = acc_.GetRightType(gate); in LowerTypedDiv() local [all …]
|
| D | gate_meta_data.h | 570 static uint64_t ToValue(GateType leftType, GateType rightType) in ToValue()
|
| /arkcompiler/ets_frontend/es2panda/ir/expressions/ |
| D | binaryExpression.cpp | 101 auto *rightType = right_->Check(checker); in Check() local
|
| D | assignmentExpression.cpp | 201 auto *rightType = right_->Check(checker); in Check() local
|