Home
last modified time | relevance | path

Searched refs:super_ctor (Results 1 – 7 of 7) sorted by relevance

/third_party/mesa3d/src/gallium/frontends/omx/tizonia/
Dh264eoutport.c46 return super_ctor(typeOf(ap_obj, "h264eoutport"), ap_obj, app); in h264e_outport_ctor()
104 return super_ctor(typeOf(ap_obj, "h264eoutport_class"), ap_obj, app); in h264e_outport_class_ctor()
Dh264dinport.c48 return super_ctor(typeOf(ap_obj, "h264dinport"), ap_obj, app); in h264d_inport_ctor()
110 return super_ctor (typeOf (ap_obj, "h264dinport_class"), ap_obj, app); in h264d_inport_class_ctor()
Dh264einport.c85 return super_ctor(typeOf(ap_obj, "h264einport"), ap_obj, app); in h264e_inport_ctor()
175 return super_ctor (typeOf (ap_obj, "h264einport_class"), ap_obj, app); in h264e_inport_class_ctor()
Dh264dprc.c364 vid_dec_PrivateType*priv = super_ctor(typeOf (ap_obj, "h264dprc"), ap_obj, app); in h264d_prc_ctor()
555 return super_ctor(typeOf(ap_obj, "h264dprc_class"), ap_obj, app); in h264d_prc_class_ctor()
Dh264eprc.c473 vid_enc_PrivateType *priv = super_ctor(typeOf(ap_obj, "h264eprc"), ap_obj, app); in h264e_prc_ctor()
639 return super_ctor(typeOf(ap_obj, "h264eprc_class"), ap_obj, app); in h264e_prc_class_ctor()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c691 ecma_value_t super_ctor = ecma_proxy_object_get_prototype_of (func_obj_p); in ecma_op_function_get_super_constructor() local
693 if (ECMA_IS_VALUE_ERROR (super_ctor)) in ecma_op_function_get_super_constructor()
695 return super_ctor; in ecma_op_function_get_super_constructor()
698 super_ctor_p = ecma_is_value_null (super_ctor) ? NULL : ecma_get_object_from_value (super_ctor); in ecma_op_function_get_super_constructor()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c806 ecma_value_t super_ctor = ecma_op_function_get_super_constructor (func_obj_p); in ecma_op_implicit_constructor_handler_heritage_cb() local
808 if (ECMA_IS_VALUE_ERROR (super_ctor)) in ecma_op_implicit_constructor_handler_heritage_cb()
810 return super_ctor; in ecma_op_implicit_constructor_handler_heritage_cb()
813 ecma_object_t *super_ctor_p = ecma_get_object_from_value (super_ctor); in ecma_op_implicit_constructor_handler_heritage_cb()