Searched refs:pspec (Results 1 - 25 of 78) sorted by relevance

1234

/external/bluetooth/glib/glib/
H A Dgpattern.c134 g_pattern_match (GPatternSpec *pspec, argument
139 g_return_val_if_fail (pspec != NULL, FALSE);
142 if (string_length < pspec->min_length ||
143 string_length > pspec->max_length)
146 switch (pspec->match_type)
150 return g_pattern_ph_match (pspec->pattern, string, &dummy);
153 return g_pattern_ph_match (pspec->pattern, string_reversed, &dummy);
159 result = g_pattern_ph_match (pspec->pattern, tmp, &dummy);
164 if (pspec->pattern_length == string_length)
165 return strcmp (pspec
189 GPatternSpec *pspec; local
295 g_pattern_spec_free(GPatternSpec *pspec) argument
316 g_pattern_match_string(GPatternSpec *pspec, const gchar *string) argument
329 GPatternSpec *pspec; local
[all...]
H A Dgpattern.h35 void g_pattern_spec_free (GPatternSpec *pspec);
38 gboolean g_pattern_match (GPatternSpec *pspec,
42 gboolean g_pattern_match_string (GPatternSpec *pspec,
/external/bluetooth/glib/gobject/
H A Dgparamspecs.h44 * @pspec: a valid #GParamSpec instance
50 #define G_IS_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_CHAR))
53 * @pspec: a valid #GParamSpec instance
57 #define G_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_CHAR, GParamSpecChar))
67 * @pspec: a valid #GParamSpec instance
73 #define G_IS_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UCHAR))
76 * @pspec
[all...]
H A Dgparam.c58 #define PSPEC_APPLIES_TO_VALUE(pspec, value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_PARAM_SPEC_VALUE_TYPE (pspec)))
68 static void g_param_spec_init (GParamSpec *pspec,
70 static void g_param_spec_finalize (GParamSpec *pspec);
157 g_param_spec_init (GParamSpec *pspec, argument
160 pspec->name = NULL;
161 pspec->_nick = NULL;
162 pspec->_blurb = NULL;
163 pspec->flags = 0;
164 pspec
174 g_param_spec_finalize(GParamSpec *pspec) argument
199 g_param_spec_ref(GParamSpec *pspec) argument
216 g_param_spec_unref(GParamSpec *pspec) argument
244 g_param_spec_sink(GParamSpec *pspec) argument
268 g_param_spec_ref_sink(GParamSpec *pspec) argument
287 g_param_spec_get_name(GParamSpec *pspec) argument
303 g_param_spec_get_nick(GParamSpec *pspec) argument
330 g_param_spec_get_blurb(GParamSpec *pspec) argument
419 GParamSpec *pspec; local
466 g_param_spec_get_qdata(GParamSpec *pspec, GQuark quark) argument
488 g_param_spec_set_qdata(GParamSpec *pspec, GQuark quark, gpointer data) argument
513 g_param_spec_set_qdata_full(GParamSpec *pspec, GQuark quark, gpointer data, GDestroyNotify destroy) argument
537 g_param_spec_steal_qdata(GParamSpec *pspec, GQuark quark) argument
564 g_param_spec_get_redirect_target(GParamSpec *pspec) argument
586 g_param_value_set_default(GParamSpec *pspec, GValue *value) argument
607 g_param_value_defaults(GParamSpec *pspec, GValue *value) argument
640 g_param_value_validate(GParamSpec *pspec, GValue *value) argument
679 g_param_value_convert(GParamSpec *pspec, const GValue *src_value, GValue *dest_value, gboolean strict_validation) argument
725 g_param_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
915 g_param_spec_pool_insert(GParamSpecPool *pool, GParamSpec *pspec, GType owner_type) argument
956 g_param_spec_pool_remove(GParamSpecPool *pool, GParamSpec *pspec) argument
981 GParamSpec key, *pspec; local
1042 GParamSpec *pspec; local
1105 GParamSpec *pspec = value; local
1162 GParamSpec *pspec = plist->data; local
1204 GParamSpec *pspec = value; local
1238 GParamSpec *pspec = value; local
1338 default_value_set_default(GParamSpec *pspec, GValue *value) argument
1345 default_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
[all...]
H A Dgparam.h42 * @pspec: a valid #GParamSpec
47 #define G_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
50 * @pspec: a #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))
73 * @pspec: a valid #GParamSpec
77 #define G_PARAM_SPEC_GET_CLASS(pspec) (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARA
[all...]
H A Dgparamspecs.c60 param_char_init (GParamSpec *pspec) argument
62 GParamSpecChar *cspec = G_PARAM_SPEC_CHAR (pspec);
70 param_char_set_default (GParamSpec *pspec, argument
73 value->data[0].v_int = G_PARAM_SPEC_CHAR (pspec)->default_value;
77 param_char_validate (GParamSpec *pspec, argument
80 GParamSpecChar *cspec = G_PARAM_SPEC_CHAR (pspec);
89 param_uchar_init (GParamSpec *pspec) argument
91 GParamSpecUChar *uspec = G_PARAM_SPEC_UCHAR (pspec);
99 param_uchar_set_default (GParamSpec *pspec, argument
102 value->data[0].v_uint = G_PARAM_SPEC_UCHAR (pspec)
106 param_uchar_validate(GParamSpec *pspec, GValue *value) argument
118 param_boolean_set_default(GParamSpec *pspec, GValue *value) argument
125 param_boolean_validate(GParamSpec *pspec, GValue *value) argument
136 param_int_init(GParamSpec *pspec) argument
146 param_int_set_default(GParamSpec *pspec, GValue *value) argument
153 param_int_validate(GParamSpec *pspec, GValue *value) argument
165 param_int_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
176 param_uint_init(GParamSpec *pspec) argument
186 param_uint_set_default(GParamSpec *pspec, GValue *value) argument
193 param_uint_validate(GParamSpec *pspec, GValue *value) argument
205 param_uint_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
216 param_long_init(GParamSpec *pspec) argument
231 param_long_set_default(GParamSpec *pspec, GValue *value) argument
238 param_long_validate(GParamSpec *pspec, GValue *value) argument
250 param_long_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
261 param_ulong_init(GParamSpec *pspec) argument
275 param_ulong_set_default(GParamSpec *pspec, GValue *value) argument
282 param_ulong_validate(GParamSpec *pspec, GValue *value) argument
294 param_ulong_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
305 param_int64_init(GParamSpec *pspec) argument
315 param_int64_set_default(GParamSpec *pspec, GValue *value) argument
322 param_int64_validate(GParamSpec *pspec, GValue *value) argument
334 param_int64_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
345 param_uint64_init(GParamSpec *pspec) argument
355 param_uint64_set_default(GParamSpec *pspec, GValue *value) argument
362 param_uint64_validate(GParamSpec *pspec, GValue *value) argument
374 param_uint64_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
385 param_unichar_init(GParamSpec *pspec) argument
393 param_unichar_set_default(GParamSpec *pspec, GValue *value) argument
400 param_unichar_validate(GParamSpec *pspec, GValue *value) argument
416 param_unichar_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
427 param_enum_init(GParamSpec *pspec) argument
436 param_enum_finalize(GParamSpec *pspec) argument
451 param_enum_set_default(GParamSpec *pspec, GValue *value) argument
458 param_enum_validate(GParamSpec *pspec, GValue *value) argument
472 param_flags_init(GParamSpec *pspec) argument
481 param_flags_finalize(GParamSpec *pspec) argument
496 param_flags_set_default(GParamSpec *pspec, GValue *value) argument
503 param_flags_validate(GParamSpec *pspec, GValue *value) argument
518 param_float_init(GParamSpec *pspec) argument
529 param_float_set_default(GParamSpec *pspec, GValue *value) argument
536 param_float_validate(GParamSpec *pspec, GValue *value) argument
548 param_float_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
561 param_double_init(GParamSpec *pspec) argument
572 param_double_set_default(GParamSpec *pspec, GValue *value) argument
579 param_double_validate(GParamSpec *pspec, GValue *value) argument
591 param_double_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
604 param_string_init(GParamSpec *pspec) argument
617 param_string_finalize(GParamSpec *pspec) argument
633 param_string_set_default(GParamSpec *pspec, GValue *value) argument
640 param_string_validate(GParamSpec *pspec, GValue *value) argument
699 param_string_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
712 param_param_init(GParamSpec *pspec) argument
718 param_param_set_default(GParamSpec *pspec, GValue *value) argument
725 param_param_validate(GParamSpec *pspec, GValue *value) argument
743 param_boxed_init(GParamSpec *pspec) argument
749 param_boxed_set_default(GParamSpec *pspec, GValue *value) argument
756 param_boxed_validate(GParamSpec *pspec, GValue *value) argument
768 param_boxed_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
781 param_pointer_init(GParamSpec *pspec) argument
787 param_pointer_set_default(GParamSpec *pspec, GValue *value) argument
794 param_pointer_validate(GParamSpec *pspec, GValue *value) argument
804 param_pointer_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
817 param_value_array_init(GParamSpec *pspec) argument
848 param_value_array_finalize(GParamSpec *pspec) argument
863 param_value_array_set_default(GParamSpec *pspec, GValue *value) argument
879 param_value_array_validate(GParamSpec *pspec, GValue *value) argument
923 param_value_array_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
965 param_object_init(GParamSpec *pspec) argument
971 param_object_set_default(GParamSpec *pspec, GValue *value) argument
978 param_object_validate(GParamSpec *pspec, GValue *value) argument
996 param_object_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
1009 param_override_init(GParamSpec *pspec) argument
1015 param_override_finalize(GParamSpec *pspec) argument
1030 param_override_set_default(GParamSpec *pspec, GValue *value) argument
1039 param_override_validate(GParamSpec *pspec, GValue *value) argument
1048 param_override_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
1058 param_gtype_init(GParamSpec *pspec) argument
1063 param_gtype_set_default(GParamSpec *pspec, GValue *value) argument
1072 param_gtype_validate(GParamSpec *pspec, GValue *value) argument
1089 param_gtype_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
2155 GParamSpecParam *pspec; local
2225 GParamSpecPointer *pspec; local
2370 GParamSpec *pspec; local
[all...]
H A Dgobject.c108 #define PARAM_SPEC_PARAM_ID(pspec) ((pspec)->param_id)
109 #define PARAM_SPEC_SET_PARAM_ID(pspec, id) ((pspec)->param_id = (id))
143 GParamSpec *pspec);
147 GParamSpec *pspec);
167 GParamSpec *pspec,
170 GParamSpec *pspec,
298 GParamSpec *pspec = node->data; local
300 g_param_spec_pool_remove (pspec_pool, pspec);
375 install_property_internal(GType g_type, guint property_id, GParamSpec *pspec) argument
406 g_object_class_install_property(GObjectClass *class, guint property_id, GParamSpec *pspec) argument
423 install_property_internal (G_OBJECT_CLASS_TYPE (class), property_id, pspec); local
460 g_object_interface_install_property(gpointer g_iface, GParamSpec *pspec) argument
487 GParamSpec *pspec; local
709 g_object_do_set_property(GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) argument
723 g_object_do_get_property(GObject *object, guint property_id, GValue *value, GParamSpec *pspec) argument
829 GParamSpec *pspec; local
892 object_get_property(GObject *object, GParamSpec *pspec, GValue *value) argument
908 object_set_property(GObject *object, GParamSpec *pspec, const GValue *value, GObjectNotifyQueue *nqueue) argument
1144 GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool, local
1199 GParamSpec *pspec = clist->data; local
1287 GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool, local
1349 GParamSpec *pspec = construct_params->pspec; local
1390 GParamSpec *pspec; local
1472 GParamSpec *pspec; local
1606 GParamSpec *pspec; local
1658 GParamSpec *pspec; local
[all...]
H A Dgobjectnotifyqueue.c110 GParamSpec *pspec = slist->data; local
115 if (pspecs[i] == pspec)
120 pspecs[n_pspecs++] = pspec;
143 GParamSpec *pspec)
145 if (pspec->flags & G_PARAM_READABLE)
151 redirect = g_param_spec_get_redirect_target (pspec);
153 pspec = redirect;
156 nqueue->pspecs = g_slist_prepend (nqueue->pspecs, pspec);
141 g_object_notify_queue_add(GObject *object, GObjectNotifyQueue *nqueue, GParamSpec *pspec) argument
H A Dgobject.h195 * @pspec: the #GParamSpec describing the property
202 GParamSpec *pspec);
209 * @pspec: the #GParamSpec describing the property
216 GParamSpec *pspec);
328 GParamSpec *pspec);
332 GParamSpec *pspec);
341 GParamSpec *pspec);
352 * @pspec: the #GParamSpec of the construct parameter
361 GParamSpec *pspec; member in struct:_GObjectConstructParam
383 GParamSpec *pspec);
[all...]
/external/bluetooth/glib/tests/gobject/
H A Dparamspec-test.c38 GParamSpec *pspec; local
42 pspec = g_param_spec_char ("char", "nick", "blurb",
45 g_assert (strcmp (g_param_spec_get_name (pspec), "char") == 0);
46 g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
47 g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
52 g_assert (g_param_value_defaults (pspec, &value));
55 modified = g_param_value_validate (pspec, &value);
59 modified = g_param_value_validate (pspec, &value);
63 modified = g_param_value_validate (pspec, &value);
67 modified = g_param_value_validate (pspec,
76 GParamSpec *pspec; local
148 GParamSpec *ospec, *pspec; local
188 GParamSpec *pspec; local
[all...]
H A Difaceproperties.c165 GParamSpec *pspec; local
169 pspec = construct_properties->pspec;
173 g_assert (G_IS_PARAM_SPEC_OVERRIDE (pspec));
174 g_assert (pspec->param_id == BASE_PROP1);
175 g_assert (strcmp (g_param_spec_get_name (pspec), "prop1") == 0);
176 g_assert (g_param_spec_get_redirect_target (pspec) == iface_spec1);
180 g_assert (strcmp (g_param_spec_get_nick (pspec), "Prop1") == 0);
181 g_assert (strcmp (g_param_spec_get_blurb (pspec), "Property 1") == 0);
188 g_param_value_set_default (pspec,
212 base_object_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) argument
242 base_object_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) argument
272 base_object_notify(GObject *object, GParamSpec *pspec) argument
335 derived_object_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) argument
359 derived_object_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) argument
[all...]
/external/webkit/Source/WebCore/bindings/gobject/
H A DWebKitDOMObject.cpp25 static void webkit_dom_object_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) argument
29 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
34 static void webkit_dom_object_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) argument
41 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
/external/oprofile/pp/
H A Dcommon_option.cpp103 options::spec pspec; local
136 pspec.first.push_back(*it);
138 pspec.second.push_back(*it);
140 pspec.common.push_back(*it);
147 if (pspec.first.empty() && pspec.second.size())
151 pspec.first.insert(pspec.first.begin(), pspec.common.begin(),
152 pspec
[all...]
H A Doparchive_options.cpp99 profile_spec const pspec = local
102 sample_files = pspec.generate_file_list(exclude_dependent, false);
110 pspec.extra_found_images);
H A Dopgprof_options.cpp112 profile_spec const pspec = local
122 if (!try_merge_profiles(pspec, true))
123 try_merge_profiles(pspec, false);
H A Dopannotate_options.cpp124 profile_spec const pspec = local
128 list<string> sample_files = pspec.generate_file_list(exclude_dependent, true);
130 cverb << vsfile << "Archive: " << pspec.get_archive_path() << endl;
144 pspec.extra_found_images);
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/
H A DWebKitDOMTestMediaQueryListListener.cpp89 static void webkit_dom_test_media_query_list_listener_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) argument
94 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
100 static void webkit_dom_test_media_query_list_listener_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) argument
105 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
H A DWebKitDOMTestInterface.cpp91 static void webkit_dom_test_interface_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) argument
96 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
102 static void webkit_dom_test_interface_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) argument
107 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
H A DWebKitDOMTestSerializedScriptValueInterface.cpp106 static void webkit_dom_test_serialized_script_value_interface_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) argument
111 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
117 static void webkit_dom_test_serialized_script_value_interface_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) argument
130 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
/external/bluetooth/glib/tests/refcount/
H A Dproperties2.c40 GParamSpec *pspec);
44 GParamSpec *pspec);
117 GParamSpec *pspec)
129 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
138 GParamSpec *pspec)
150 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
159 GParamSpec *pspec)
114 my_test_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) argument
135 my_test_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) argument
158 dummy_notify(GObject *object, GParamSpec *pspec) argument
H A Dproperties.c43 GParamSpec *pspec);
47 GParamSpec *pspec);
118 GParamSpec *pspec)
130 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
139 GParamSpec *pspec)
151 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
158 GParamSpec *pspec)
115 my_test_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) argument
136 my_test_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) argument
157 dummy_notify(GObject *object, GParamSpec *pspec) argument
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkiticondatabase.cpp99 static void webkit_icon_database_set_property(GObject* object, guint propId, const GValue* value, GParamSpec* pspec) argument
108 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
113 static void webkit_icon_database_get_property(GObject* object, guint propId, GValue* value, GParamSpec* pspec) argument
122 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
H A Dwebkitnetworkrequest.cpp81 static void webkit_network_request_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
93 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
97 static void webkit_network_request_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
H A Dwebkitnetworkresponse.cpp81 static void webkit_network_response_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
93 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
97 static void webkit_network_response_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
/external/bluetooth/bluez/audio/
H A Dgstrtpsbcpay.c102 const GValue *value, GParamSpec *pspec);
104 GValue *value, GParamSpec *pspec);
305 const GValue *value, GParamSpec *pspec)
316 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
322 GValue *value, GParamSpec *pspec)
333 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
304 gst_rtp_sbc_pay_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) argument
321 gst_rtp_sbc_pay_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) argument

Completed in 422 milliseconds

1234