Lines Matching defs:rhs
1066 const jerry_value_t rhs) /**< second operand */
1070 if (ecma_is_value_error_reference (lhs) || ecma_is_value_error_reference (rhs))
1079 return jerry_return (ecma_op_abstract_equality_compare (lhs, rhs));
1083 return ecma_make_boolean_value (ecma_op_strict_equality_compare (lhs, rhs));
1087 return jerry_return (opfunc_relation (lhs, rhs, true, false));
1091 return jerry_return (opfunc_relation (lhs, rhs, false, true));
1095 return jerry_return (opfunc_relation (lhs, rhs, false, false));
1099 return jerry_return (opfunc_relation (lhs, rhs, true, true));
1104 || !ecma_op_is_callable (rhs))
1109 ecma_object_t *proto_obj_p = ecma_get_object_from_value (rhs);
1114 return jerry_return (opfunc_addition (lhs, rhs));
1121 return jerry_return (do_number_arithmetic (op - ECMA_NUMBER_ARITHMETIC_OP_API_OFFSET, lhs, rhs));