Home
last modified time | relevance | path

Searched refs:prototype_cp (Results 1 – 14 of 14) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-exceptions.c173 if (error_object->u2.prototype_cp == JMEM_CP_NULL) in ecma_get_error_type()
178 …a_object_t *prototype_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, error_object->u2.prototype_cp); in ecma_get_error_type()
Decma-objects.c384 if (object_p->u2.prototype_cp == JMEM_CP_NULL) in ecma_op_object_get_property()
389 object_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, object_p->u2.prototype_cp); in ecma_op_object_get_property()
751 if (object_p->u2.prototype_cp == JMEM_CP_NULL) in ecma_op_object_find()
756 object_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, object_p->u2.prototype_cp); in ecma_op_object_find()
2614 if (!is_with_prototype_chain || obj_p->u2.prototype_cp == JMEM_CP_NULL) in ecma_op_object_get_property_names()
2619 obj_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, obj_p->u2.prototype_cp); in ecma_op_object_get_property_names()
3103 return obj_p->u2.prototype_cp; in ecma_op_ordinary_object_get_prototype_of()
3172 ECMA_SET_POINTER (obj_p->u2.prototype_cp, new_proto_p); in ecma_op_ordinary_object_set_prototype_of()
Decma-typedarray-object.c553 ECMA_SET_NON_NULL_POINTER (new_arraybuffer_p->u2.prototype_cp, prototype_p); in ecma_typedarray_create_object_with_length()
Decma-function-object.c386 ECMA_SET_NON_NULL_POINTER (func_obj_p->u2.prototype_cp, proto); in ecma_op_create_dynamic_function()
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c1469 jmem_cpointer_t prototype_cp = object_p->u2.prototype_cp; in jerry_debugger_exception_object_to_string() local
1471 if (prototype_cp == JMEM_CP_NULL) in jerry_debugger_exception_object_to_string()
1476 ecma_object_t *prototype_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, prototype_cp); in jerry_debugger_exception_object_to_string()
/third_party/jerryscript/jerry-core/ext/
Dheapdump.c270 jmem_cpointer_t proto_cp = object->u2.prototype_cp; in DumpInfoObject()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-array.c523 ECMA_SET_NON_NULL_POINTER (object_p->u2.prototype_cp, proto_p); in ecma_builtin_array_dispatch_construct()
Decma-builtins.c554 obj_p->u2.prototype_cp = JMEM_CP_NULL; in ecma_finalize_builtins()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c831 ECMA_SET_POINTER (ecma_get_object_from_value (result)->u2.prototype_cp, in ecma_op_implicit_constructor_handler_heritage_cb()
996 ECMA_SET_POINTER (ctor_p->u2.prototype_cp, ctor_parent_p); in opfunc_init_class()
Dvm.c600 ECMA_SET_POINTER (ecma_get_object_from_value (completion_value)->u2.prototype_cp, in vm_super_call()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h798 jmem_cpointer_t prototype_cp; /**< compressed pointer to the object's prototype */ member
Decma-helpers.c95 ECMA_SET_POINTER (new_object_p->u2.prototype_cp, prototype_object_p); in ecma_create_object()
Decma-gc.c551 jmem_cpointer_t proto_cp = object_p->u2.prototype_cp; in ecma_gc_mark()
/third_party/jerryscript/jerry-core/api/
Djerry.c2990 if (obj_p->u2.prototype_cp == JMEM_CP_NULL) in jerry_get_prototype()
2995 ecma_object_t *proto_obj_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, obj_p->u2.prototype_cp); in jerry_get_prototype()