Home
last modified time | relevance | path

Searched refs:ecma_op_to_object (Results 1 – 20 of 20) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object-prototype.c98 return ecma_op_to_object (this_arg); in ecma_builtin_object_prototype_object_value_of()
183 ecma_value_t v_obj_value = ecma_op_to_object (arg); in ecma_builtin_object_prototype_object_is_prototype_of()
267 ecma_value_t to_object = ecma_op_to_object (this_arg); in ecma_builtin_object_prototype_dispatch_routine()
316 ecma_value_t to_object = ecma_op_to_object (this_arg); in ecma_builtin_object_prototype_dispatch_routine()
Decma-builtin-string.c149 ecma_value_t cooked = ecma_op_to_object (template); in ecma_builtin_string_object_raw()
169 ecma_value_t raw_obj = ecma_op_to_object (raw); in ecma_builtin_string_object_raw()
Decma-builtin-object.c104 return ecma_op_to_object (arguments_list_p[0]); in ecma_builtin_object_dispatch_call()
763 ecma_value_t props = ecma_op_to_object (arg2); in ecma_builtin_object_object_define_properties()
974 ecma_value_t from_value = ecma_op_to_object (next_source); in ecma_builtin_object_object_assign()
1161 ecma_value_t object = ecma_op_to_object (arg1); in ecma_builtin_object_dispatch_routine()
Decma-builtin-intrinsic.c68 ecma_value_t this_obj = ecma_op_to_object (this_value); in ecma_builtin_intrinsic_array_prototype_values()
Decma-builtin-string-prototype.c398 ecma_object_t *obj_p = ecma_get_object_from_value (ecma_op_to_object (search_value)); in ecma_builtin_string_prototype_object_replace()
587 ecma_object_t *obj_p = ecma_get_object_from_value (ecma_op_to_object (regexp_value)); in ecma_builtin_string_prototype_object_search()
752 ecma_object_t *obj_p = ecma_get_object_from_value (ecma_op_to_object (separator_value)); in ecma_builtin_string_prototype_object_split()
Decma-builtin-helpers.c132 ecma_value_t obj_this = ecma_op_to_object (this_arg); in ecma_builtin_helper_object_to_string()
222 ecma_value_t index_obj_value = ecma_op_to_object (index_value); in ecma_builtin_helper_get_to_locale_string_at_index()
Decma-builtin-array.c263 ecma_value_t array_like = ecma_op_to_object (items); in ecma_builtin_array_object_from()
Decma-builtin-date-prototype.c138 ecma_op_to_object (this_arg), in ecma_builtin_date_prototype_to_json()
Decma-builtin-regexp-prototype.c447 ecma_value_t obj_this = ecma_op_to_object (this_arg); in ecma_builtin_regexp_prototype_exec()
Decma-builtin-array-prototype.c2605 ecma_value_t obj_this = ecma_op_to_object (this_arg); in ecma_builtin_array_prototype_dispatch_routine()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-conversion.h51 ecma_value_t ecma_op_to_object (ecma_value_t value);
Decma-objects-general.c88 return ecma_op_to_object (value); in ecma_op_create_object_object_arg()
Decma-conversion.c509 ecma_op_to_object (ecma_value_t value) /**< ecma value */ in ecma_op_to_object() function
Decma-typedarray-object.c891 ecma_value_t arraylike_object_val = ecma_op_to_object (items_val); in ecma_op_typedarray_from()
Decma-objects.c983 ecma_value_t obj_value = ecma_op_to_object (value); in ecma_op_get_method()
3058 ecma_value_t object_value = ecma_op_to_object (object); in ecma_op_invoke()
Decma-function-object.c850 this_binding = ecma_op_to_object (this_binding); in ecma_op_function_call_simple()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c216 ecma_value_t obj_value = ecma_op_to_object (object); in vm_op_delete_prop()
288 ecma_value_t obj_expr_value = ecma_op_to_object (left_value); in opfunc_for_in()
1251 ecma_value_t base_obj = ecma_op_to_object (stack_top_p[-3]); in opfunc_assign_super_reference()
Dvm.c201 ecma_value_t object = ecma_op_to_object (base); in vm_op_set_value()
3511 result = ecma_op_to_object (value); in vm_loop()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray-prototype.c964 ECMA_TRY_CATCH (source_obj, ecma_op_to_object (arr_val), ret_val); in ecma_builtin_typedarray_prototype_set()
1089 ecma_value_t obj_value = ecma_op_to_object (this_arg); in ecma_builtin_typedarray_prototype_join()
1197 ecma_value_t obj_this_value = ecma_op_to_object (this_arg); in ecma_builtin_typedarray_prototype_object_to_string()
/third_party/jerryscript/jerry-core/api/
Djerry.c1347 return jerry_return (ecma_op_to_object (value)); in jerry_value_to_object()