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/
Decma-typedarray-object.c506 ecma_object_t *proto_p, /**< prototype object */ in ecma_typedarray_create_object_with_length() argument
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() argument
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() argument
643 proto_p, in ecma_typedarray_create_object_with_typedarray()
757 ecma_object_t *proto_p, /**< prototype object */ in ecma_op_typedarray_from() argument
840 proto_p, in ecma_op_typedarray_from()
913 proto_p, in ecma_op_typedarray_from()
1081 ecma_object_t *proto_p, /**< prototype object */ in ecma_op_create_typedarray() argument
[all …]
Decma-typedarray-object.h48 ecma_object_t *proto_p,
58 ecma_object_t *proto_p,
73 ecma_object_t *proto_p,
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()
Decma-function-object.c1156 …ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (new_target_p, ECMA_BUILTIN_ID_OBJ… 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_OBJ… 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()
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()
Decma-container-object.c378 …ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (JERRY_CONTEXT (current_new_target… 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()
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/
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/
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() local
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/
Dopcodes.c599 …ecma_object_t *proto_p = ecma_op_get_prototype_from_constructor (JERRY_CONTEXT (current_function_o… 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_p); in opfunc_finalize_class()
[all …]