Searched refs:proto_cp (Results 1 - 8 of 8) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-function-prototype.c | 231 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (this_arg_obj_p); in ecma_builtin_function_prototype_object_bind() local 232 if (proto_cp != JMEM_CP_NULL) in ecma_builtin_function_prototype_object_bind() 234 prototype_obj_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_builtin_function_prototype_object_bind()
|
H A D | ecma-builtin-object.c | 147 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (obj_p); in ecma_builtin_object_object_get_prototype_of() local 149 if (proto_cp != JMEM_CP_NULL) in ecma_builtin_object_object_get_prototype_of() 151 ecma_object_t *prototype_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_builtin_object_object_get_prototype_of()
|
/third_party/jerryscript/jerry-core/ext/ |
H A D | heapdump.c | 270 jmem_cpointer_t proto_cp = object->u2.prototype_cp; in DumpInfoObject() local 271 if (proto_cp != JMEM_CP_NULL) { in DumpInfoObject() 272 LogAddr(ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp)); in DumpInfoObject()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-reference.c | 109 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (home_p); in ecma_op_resolve_super_base() local 111 if (proto_cp == JMEM_CP_NULL) in ecma_op_resolve_super_base() 116 ecma_object_t *proto_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_resolve_super_base()
|
H A D | ecma-objects.c | 423 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (object_p); in ecma_op_object_has_property() local 426 if (proto_cp == JMEM_CP_NULL) in ecma_op_object_has_property() 431 object_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_object_has_property() 851 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (object_p); in ecma_op_object_get_with_receiver() local 853 if (proto_cp == JMEM_CP_NULL) in ecma_op_object_get_with_receiver() 858 object_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_object_get_with_receiver() 1514 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (object_p); in ecma_op_object_put_with_receiver() local 1516 if (proto_cp != JMEM_CP_NULL) in ecma_op_object_put_with_receiver() 1519 ecma_object_t *proto_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_object_put_with_receiver()
|
H A D | ecma-proxy-object.c | 253 jmem_cpointer_t proto_cp; in ecma_proxy_object_prototype_to_cp() local 255 ECMA_SET_POINTER (proto_cp, proto_obj_p); in ecma_proxy_object_prototype_to_cp() 258 return proto_cp; in ecma_proxy_object_prototype_to_cp()
|
H A D | ecma-function-object.c | 703 jmem_cpointer_t proto_cp = ecma_op_ordinary_object_get_prototype_of (func_obj_p); in ecma_op_function_get_super_constructor() local 704 if (proto_cp == JMEM_CP_NULL) in ecma_op_function_get_super_constructor() 710 super_ctor_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp); in ecma_op_function_get_super_constructor()
|
/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-gc.c | 551 jmem_cpointer_t proto_cp = object_p->u2.prototype_cp; in ecma_gc_mark() local 553 if (proto_cp != JMEM_CP_NULL) in ecma_gc_mark() 555 ecma_gc_set_object_visited (ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp)); in ecma_gc_mark()
|
Completed in 13 milliseconds