Lines Matching refs:instance
280 /* reset instance specific fields and methods that don't get inherited */
1042 * Creates a new instance of a #GObject subtype and sets its properties.
1047 * Returns: a new instance of @object_type
1104 * Creates a new instance of a #GObject subtype and sets its properties.
1109 * Returns: a new instance of @object_type
1257 * Creates a new instance of a #GObject subtype and sets its properties.
1262 * Returns: a new instance of @object_type
1452 * the type, for instance by calling g_free() or g_object_unref().
1552 * the type, for instance by calling g_free() or g_object_unref().
2878 * @instance: the instance to connect to.
2892 * @instance is itself being freed at the same time than this doesn't
2894 * if @instance persists, then the signal handler will leak. You
2903 * if (g_signal_handler_is_connected (instance, id))
2904 * g_signal_handler_disconnect (instance, id);
2910 g_signal_connect_object (gpointer instance,
2916 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2928 return g_signal_connect_closure (instance, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
2931 return g_signal_connect_data (instance, detailed_signal, c_handler, NULL, NULL, connect_flags);