Home
last modified time | relevance | path

Searched refs:prototype_p (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-arguments.c67 ecma_object_t *prototype_p = ecma_builtin_get (ECMA_BUILTIN_ID_OBJECT_PROTOTYPE); in ecma_op_create_arguments_object() local
77 obj_p = ecma_create_object (prototype_p, in ecma_op_create_arguments_object()
108 … obj_p = ecma_create_object (prototype_p, sizeof (ecma_extended_object_t), ECMA_OBJECT_TYPE_CLASS); in ecma_op_create_arguments_object()
Decma-exceptions.c178 …ecma_object_t *prototype_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, error_object->u2.prototype_… in ecma_get_error_type() local
180 uint8_t builtin_id = ecma_get_object_builtin_id (prototype_p); in ecma_get_error_type()
Decma-typedarray-object.c541 ecma_object_t *prototype_p = ecma_op_get_prototype_from_constructor (ctor_proto_p, in ecma_typedarray_create_object_with_length() local
546 if (JERRY_UNLIKELY (prototype_p == NULL)) in ecma_typedarray_create_object_with_length()
553 ECMA_SET_NON_NULL_POINTER (new_arraybuffer_p->u2.prototype_cp, prototype_p); in ecma_typedarray_create_object_with_length()
555 ecma_deref_object (prototype_p); in ecma_typedarray_create_object_with_length()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c151 ecma_object_t *prototype_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_builtin_object_object_get_prototype_of() local
152 ecma_ref_object (prototype_p); in ecma_builtin_object_object_get_prototype_of()
153 return ecma_make_object_value (prototype_p); in ecma_builtin_object_object_get_prototype_of()
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c1476 ecma_object_t *prototype_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, prototype_cp); in jerry_debugger_exception_object_to_string() local
1478 if (ecma_get_object_type (prototype_p) != ECMA_OBJECT_TYPE_GENERAL in jerry_debugger_exception_object_to_string()
1479 || !ecma_get_object_is_builtin (prototype_p)) in jerry_debugger_exception_object_to_string()
1486 switch (((ecma_extended_object_t *) prototype_p)->u.built_in.id) in jerry_debugger_exception_object_to_string()