HomeSort by relevance Sort by last modified time
    Searched defs:g_type (Results 1 - 3 of 3) sorted by null

  /external/bluetooth/glib/gobject/
gvalue.h 61 #define G_VALUE_TYPE(value) (((GValue*) (value))->g_type)
105 * within the 2 element @data union, and the @g_type member should
111 GType g_type; member in struct:_GValue
130 GType g_type);
gvalue.c 152 value->g_type = value_type;
159 * @g_type: Type the #GValue should hold values of.
167 GType g_type)
169 /* g_return_val_if_fail (G_TYPE_IS_VALUE (g_type), NULL); be more elaborate below */
173 if (G_TYPE_IS_VALUE (g_type) && G_VALUE_TYPE (value) == 0)
175 GTypeValueTable *value_table = g_type_value_table_peek (g_type);
178 value_meminit (value, g_type);
184 g_type_name (g_type),
186 else /* !G_TYPE_IS_VALUE (g_type) */
189 g_type_name (g_type),
239 GType g_type; local
340 GType g_type; local
    [all...]
gtype.h 394 GType g_type; member in struct:_GTypeClass
414 GType g_type; /* iface type */ member in struct:_GTypeInterface
455 * @g_type: The type to be returned.
456 * @c_type: The corresponding C type of @g_type.
458 * Checks that @instance is an instance of the type identified by @g_type
464 #define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type) (_G_TYPE_CIC ((instance), (g_type), c_type))
468 * @g_type: The type to be checked
470 * Checks if @instance is an instance of the type identified by @g_type.
476 #define G_TYPE_CHECK_INSTANCE_TYPE(instance, g_type) (_G_TYPE_CIT ((instance), (g_type))
    [all...]

Completed in 102 milliseconds