HomeSort by relevance Sort by last modified time
    Searched refs:G_TYPE_PARAM (Results 1 - 6 of 6) sorted by null

  /external/bluetooth/glib/gobject/
gparam.h 37 * Checks whether @type "is a" %G_TYPE_PARAM.
39 #define G_TYPE_IS_PARAM(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM)
47 #define G_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
52 * Checks whether @pspec "is a" valid #GParamSpec structure of type %G_TYPE_PARAM
55 #define G_IS_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM))
62 #define G_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_CAST ((pclass), G_TYPE_PARAM, GParamSpecClass))
68 * %G_TYPE_PARAM or derived.
70 #define G_IS_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_TYPE ((pclass), G_TYPE_PARAM))
77 #define G_PARAM_SPEC_GET_CLASS(pspec) (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass))
106 * Checks whether the given #GValue can hold values derived from type %G_TYPE_PARAM
    [all...]
gparam.c 130 type = g_type_register_fundamental (G_TYPE_PARAM, g_intern_static_string ("GParam"), &param_spec_info, &finfo, G_TYPE_FLAG_ABSTRACT);
131 g_assert (type == G_TYPE_PARAM);
132 g_value_register_transform_func (G_TYPE_PARAM, G_TYPE_PARAM, value_param_transform_value);
386 * @param_type: the #GType for the property; must be derived from #G_TYPE_PARAM
421 g_return_val_if_fail (G_TYPE_IS_PARAM (param_type) && param_type != G_TYPE_PARAM, NULL);
    [all...]
gtype.h 171 * G_TYPE_PARAM:
175 #define G_TYPE_PARAM G_TYPE_MAKE_FUNDAMENTAL (19)
    [all...]
gobject.c 366 1, G_TYPE_PARAM);
    [all...]
gparamspecs.c     [all...]
  /external/bluetooth/glib/tests/gobject/
paramspec-test.c 193 G_TYPE_PARAM, G_PARAM_READWRITE);
196 g_value_set_gtype (&value, G_TYPE_PARAM);
202 g_assert (modified && g_value_get_gtype (&value) == G_TYPE_PARAM);

Completed in 88 milliseconds