Home
last modified time | relevance | path

Searched refs:proto_obj_p (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c752 ecma_object_t *proto_obj_p; in ecma_op_get_prototype_from_constructor() local
757 proto_obj_p = ecma_builtin_get (default_proto_id); in ecma_op_get_prototype_from_constructor()
758 ecma_ref_object (proto_obj_p); in ecma_op_get_prototype_from_constructor()
762 proto_obj_p = ecma_get_object_from_value (proto); in ecma_op_get_prototype_from_constructor()
765 return proto_obj_p; in ecma_op_get_prototype_from_constructor()
Decma-proxy-object.c254 ecma_object_t *proto_obj_p = ecma_get_object_from_value (proto); in ecma_proxy_object_prototype_to_cp() local
255 ECMA_SET_POINTER (proto_cp, proto_obj_p); in ecma_proxy_object_prototype_to_cp()
256 ecma_deref_object (proto_obj_p); in ecma_proxy_object_prototype_to_cp()
Decma-regexp-object.c218 ecma_object_t *proto_obj_p = ecma_op_get_prototype_from_constructor (ctr_obj_p, in ecma_op_regexp_alloc() local
221 if (JERRY_UNLIKELY (proto_obj_p == NULL)) in ecma_op_regexp_alloc()
223 return proto_obj_p; in ecma_op_regexp_alloc()
228 ecma_object_t *proto_obj_p = ecma_builtin_get (ECMA_BUILTIN_ID_REGEXP_PROTOTYPE); in ecma_op_regexp_alloc()
231 ecma_object_t *new_object_p = ecma_create_object (proto_obj_p, in ecma_op_regexp_alloc()
236 ecma_deref_object (proto_obj_p); in ecma_op_regexp_alloc()
/third_party/jerryscript/jerry-core/api/
Djerry.c1109 ecma_object_t *proto_obj_p = ecma_get_object_from_value (rhs); in jerry_binary_operation() local
1110 return jerry_return (ecma_op_object_has_instance (proto_obj_p, lhs)); in jerry_binary_operation()
2995 ecma_object_t *proto_obj_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, obj_p->u2.prototype_cp); in jerry_get_prototype() local
2996 ecma_ref_object (proto_obj_p); in jerry_get_prototype()
2998 return ecma_make_object_value (proto_obj_p); in jerry_get_prototype()