Lines Matching refs:leftValue
62 UType leftValue = GetOperand<TargetType>(left);
68 result = leftValue < rightValue;
72 result = leftValue <= rightValue;
76 result = leftValue > rightValue;
80 result = leftValue >= rightValue;
84 result = leftValue == rightValue;
88 result = leftValue != rightValue;
104 UType leftValue = GetOperand<TargetType>(left);
106 auto result = leftValue;
112 result = leftValue + rightValue;
117 result = leftValue - rightValue;
125 result = leftValue / rightValue;
130 result = leftValue * rightValue;
138 result = HandleModulo<UType>(leftValue, rightValue);
150 inline IntType::UType ark::es2panda::checker::ETSChecker::HandleModulo<IntType::UType>(IntType::UType leftValue,
154 return leftValue % rightValue;
158 inline LongType::UType ark::es2panda::checker::ETSChecker::HandleModulo<LongType::UType>(LongType::UType leftValue,
162 return leftValue % rightValue;
166 inline FloatType::UType ark::es2panda::checker::ETSChecker::HandleModulo<FloatType::UType>(FloatType::UType leftValue,
169 return std::fmod(leftValue, rightValue);
174 DoubleType::UType leftValue, DoubleType::UType rightValue)
176 return std::fmod(leftValue, rightValue);