Searched refs:pspec_info (Results 1 – 5 of 5) sorted by relevance
/third_party/glib/gobject/ |
D | gparamspecs.c | 1213 const GParamSpecTypeInfo pspec_info = { in _g_param_spec_types_init() local 1223 type = g_param_type_register_static (g_intern_static_string ("GParamChar"), &pspec_info); in _g_param_spec_types_init() 1231 const GParamSpecTypeInfo pspec_info = { in _g_param_spec_types_init() local 1241 type = g_param_type_register_static (g_intern_static_string ("GParamUChar"), &pspec_info); in _g_param_spec_types_init() 1249 const GParamSpecTypeInfo pspec_info = { in _g_param_spec_types_init() local 1259 type = g_param_type_register_static (g_intern_static_string ("GParamBoolean"), &pspec_info); in _g_param_spec_types_init() 1267 const GParamSpecTypeInfo pspec_info = { in _g_param_spec_types_init() local 1277 type = g_param_type_register_static (g_intern_static_string ("GParamInt"), &pspec_info); in _g_param_spec_types_init() 1285 const GParamSpecTypeInfo pspec_info = { in _g_param_spec_types_init() local 1295 type = g_param_type_register_static (g_intern_static_string ("GParamUInt"), &pspec_info); in _g_param_spec_types_init() [all …]
|
D | gparam.c | 1413 const GParamSpecTypeInfo *pspec_info) in g_param_type_register_static() argument 1430 g_return_val_if_fail (pspec_info != NULL, 0); in g_param_type_register_static() 1432 g_return_val_if_fail (pspec_info->instance_size >= sizeof (GParamSpec), 0); in g_param_type_register_static() 1433 g_return_val_if_fail (g_type_name (pspec_info->value_type) != NULL, 0); in g_param_type_register_static() 1438 info.instance_size = pspec_info->instance_size; in g_param_type_register_static() 1439 info.n_preallocs = pspec_info->n_preallocs; in g_param_type_register_static() 1440 info.instance_init = (GInstanceInitFunc) pspec_info->instance_init; in g_param_type_register_static() 1442 cinfo->value_type = pspec_info->value_type; in g_param_type_register_static() 1443 cinfo->finalize = pspec_info->finalize; in g_param_type_register_static() 1444 …cinfo->value_set_default = pspec_info->value_set_default ? pspec_info->value_set_default : default… in g_param_type_register_static() [all …]
|
D | gparam.h | 396 const GParamSpecTypeInfo *pspec_info); 403 const GParamSpecTypeInfo *pspec_info,
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstparamspecs.c | 131 static GParamSpecTypeInfo pspec_info = { in gst_param_spec_fraction_get_type() local 141 pspec_info.value_type = gst_fraction_get_type (); in gst_param_spec_fraction_get_type() 142 type = g_param_type_register_static ("GstParamFraction", &pspec_info); in gst_param_spec_fraction_get_type() 312 static GParamSpecTypeInfo pspec_info = { in gst_param_spec_array_get_type() local 322 pspec_info.value_type = gst_value_array_get_type (); in gst_param_spec_array_get_type() 323 type = g_param_type_register_static ("GstParamArray", &pspec_info); in gst_param_spec_array_get_type()
|
/third_party/gstreamer/gstreamer/ |
D | ChangeLog | 17871 …py:178: Warning: g_param_type_register_static: assertion 'g_type_name (pspec_info->value_type) != …
|