Home
last modified time | relevance | path

Searched refs:proto_p (Results 1 - 10 of 10) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-typedarray-object.c506 ecma_object_t *proto_p, /**< prototype object */ in ecma_typedarray_create_object_with_length()
558 ecma_object_t *object_p = ecma_create_object (proto_p, in ecma_typedarray_create_object_with_length()
585 ecma_object_t *proto_p, /**< prototype object */ in ecma_typedarray_create_object_with_buffer()
600 ecma_object_t *object_p = ecma_create_object (proto_p, object_size, ECMA_OBJECT_TYPE_PSEUDO_ARRAY); in ecma_typedarray_create_object_with_buffer()
630 ecma_object_t *proto_p, /**< prototype object */ in ecma_typedarray_create_object_with_typedarray()
643 proto_p, in ecma_typedarray_create_object_with_typedarray()
757 ecma_object_t *proto_p, /**< prototype object */ in ecma_op_typedarray_from()
840 proto_p, in ecma_op_typedarray_from()
913 proto_p, in ecma_op_typedarray_from()
1081 ecma_object_t *proto_p, /**< prototyp in ecma_op_create_typedarray()
504 ecma_typedarray_create_object_with_length(ecma_length_t array_length, ecma_object_t *src_buffer_p, ecma_object_t *proto_p, uint8_t element_size_shift, ecma_typedarray_type_t typedarray_id) ecma_typedarray_create_object_with_length() argument
582 ecma_typedarray_create_object_with_buffer(ecma_object_t *arraybuffer_p, ecma_length_t byte_offset, ecma_length_t array_length, ecma_object_t *proto_p, uint8_t element_size_shift, ecma_typedarray_type_t typedarray_id) ecma_typedarray_create_object_with_buffer() argument
629 ecma_typedarray_create_object_with_typedarray(ecma_object_t *typedarray_p, ecma_object_t *proto_p, uint8_t element_size_shift, ecma_typedarray_type_t typedarray_id) ecma_typedarray_create_object_with_typedarray() argument
754 ecma_op_typedarray_from(ecma_value_t items_val, ecma_value_t map_fn_val, ecma_value_t this_val, ecma_object_t *proto_p, uint8_t element_size_shift, ecma_typedarray_type_t typedarray_id) ecma_op_typedarray_from() argument
1079 ecma_op_create_typedarray(const ecma_value_t *arguments_list_p, ecma_length_t arguments_list_len, ecma_object_t *proto_p, uint8_t element_size_shift, ecma_typedarray_type_t typedarray_id) ecma_op_create_typedarray() argument
1352 ecma_object_t *proto_p = ecma_builtin_get (ecma_typedarray_helper_get_prototype_id (typedarray_id)); ecma_op_create_typedarray_with_type_and_length() local
[all...]
H A Decma-typedarray-object.h48 ecma_object_t *proto_p,
58 ecma_object_t *proto_p,
73 ecma_object_t *proto_p,
H A Decma-reference.c116 ecma_object_t *proto_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_resolve_super_base() local
117 ecma_ref_object (proto_p); in ecma_op_resolve_super_base()
119 return ecma_make_object_value (proto_p); in ecma_op_resolve_super_base()
H A Decma-function-object.c1156 ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (new_target_p, ECMA_BUILTIN_ID_OBJECT_PROTOTYPE); in ecma_op_function_construct_external() local
1158 if (JERRY_UNLIKELY (proto_p == NULL)) in ecma_op_function_construct_external()
1163 ecma_object_t *new_this_obj_p = ecma_create_object (proto_p, 0, ECMA_OBJECT_TYPE_GENERAL); in ecma_op_function_construct_external()
1165 ecma_deref_object (proto_p); in ecma_op_function_construct_external()
1260 ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (new_target_p, ECMA_BUILTIN_ID_OBJECT_PROTOTYPE); in ecma_op_function_construct() local
1263 if (JERRY_UNLIKELY (proto_p == NULL)) in ecma_op_function_construct()
1268 new_this_obj_p = ecma_create_object (proto_p, 0, ECMA_OBJECT_TYPE_GENERAL); in ecma_op_function_construct()
1269 ecma_deref_object (proto_p); in ecma_op_function_construct()
H A Decma-promise-object.c519 ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (JERRY_CONTEXT (current_new_target), in ecma_op_create_promise_object() local
522 if (JERRY_UNLIKELY (proto_p == NULL)) in ecma_op_create_promise_object()
531 ecma_object_t *object_p = ecma_create_object (proto_p, in ecma_op_create_promise_object()
534 ecma_deref_object (proto_p); in ecma_op_create_promise_object()
H A Decma-container-object.c378 ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (JERRY_CONTEXT (current_new_target), proto_id); in ecma_op_container_create() local
380 if (JERRY_UNLIKELY (proto_p == NULL)) in ecma_op_container_create()
386 ecma_object_t *object_p = ecma_create_object (proto_p, in ecma_op_container_create()
389 ecma_deref_object (proto_p); in ecma_op_container_create()
H A Decma-objects.c1519 ecma_object_t *proto_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_object_put_with_receiver() local
1522 if (ECMA_OBJECT_IS_PROXY (proto_p)) in ecma_op_object_put_with_receiver()
1524 return ecma_op_object_put_with_receiver (proto_p, in ecma_op_object_put_with_receiver()
1532 ecma_property_t inherited_property = ecma_op_object_get_property (proto_p, in ecma_op_object_put_with_receiver()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
H A Decma-builtin-typedarray.c105 ecma_object_t *proto_p = ecma_builtin_get (ecma_typedarray_helper_get_prototype_id (typedarray_id)); in ecma_builtin_typedarray_from() local
111 proto_p, in ecma_builtin_typedarray_from()
146 ecma_object_t *proto_p = ecma_builtin_get (ecma_typedarray_helper_get_prototype_id (typedarray_id)); in ecma_builtin_typedarray_of() local
151 proto_p, in ecma_builtin_typedarray_of()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-array.c506 ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (JERRY_CONTEXT (current_new_target), in ecma_builtin_array_dispatch_construct()
509 if (proto_p == NULL) in ecma_builtin_array_dispatch_construct()
518 ecma_deref_object (proto_p); in ecma_builtin_array_dispatch_construct()
523 ECMA_SET_NON_NULL_POINTER (object_p->u2.prototype_cp, proto_p); in ecma_builtin_array_dispatch_construct()
524 ecma_deref_object (proto_p); in ecma_builtin_array_dispatch_construct()
/third_party/jerryscript/jerry-core/vm/
H A Dopcodes.c599 ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (JERRY_CONTEXT (current_function_obj_p), in opfunc_create_executable_object() local
602 ecma_object_t *object_p = ecma_create_object (proto_p, in opfunc_create_executable_object()
606 ecma_deref_object (proto_p); in opfunc_create_executable_object()
993 ecma_object_t *proto_p = ecma_create_object (proto_parent_p, 0, ECMA_OBJECT_TYPE_GENERAL); in opfunc_init_class() local
994 ecma_value_t proto = ecma_make_object_value (proto_p); in opfunc_init_class()
1013 property_value_p = ecma_create_named_data_property (proto_p, in opfunc_init_class()
1022 proto_p, in opfunc_init_class()
1136 ecma_object_t *proto_p = ecma_get_object_from_value (stack_top_p[-1]); in opfunc_finalize_class() local
1150 proto_p, in opfunc_finalize_class()
1154 opfunc_set_class_attributes (proto_p, proto_env_ in opfunc_finalize_class()
[all...]

Completed in 14 milliseconds