Lines Matching defs:lhs
1065 const jerry_value_t lhs, /**< first 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));
1103 if (!ecma_is_value_object (lhs)
1110 return jerry_return (ecma_op_object_has_instance (proto_obj_p, lhs));
1114 return jerry_return (opfunc_addition (lhs, rhs));
1121 return jerry_return (do_number_arithmetic (op - ECMA_NUMBER_ARITHMETIC_OP_API_OFFSET, lhs, rhs));