OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:src_value
(Results
1 - 10
of
10
) sorted by null
/external/bluetooth/glib/gobject/
gvalue.h
88
* @
src_value
: Source value.
94
typedef void (*GValueTransform) (const GValue *
src_value
,
131
void g_value_copy (const GValue *
src_value
,
149
gboolean g_value_transform (const GValue *
src_value
,
gvalue.c
64
* int2string (const GValue *
src_value
,
67
* if (g_value_get_int (
src_value
) == 42)
198
* @
src_value
: An initialized #GValue structure.
199
* @dest_value: An initialized #GValue structure of the same type as @
src_value
.
201
* Copies the value of @
src_value
into @dest_value.
204
g_value_copy (const GValue *
src_value
,
207
g_return_if_fail (G_IS_VALUE (
src_value
));
209
g_return_if_fail (g_value_type_compatible (G_VALUE_TYPE (
src_value
), G_VALUE_TYPE (dest_value)));
211
if (
src_value
!= dest_value)
222
value_table->value_copy (
src_value
, dest_value)
[
all
...]
gboxed.c
93
const GValue *
src_value
= boxed;
local
96
if (G_VALUE_TYPE (
src_value
))
98
g_value_init (dest_value, G_VALUE_TYPE (
src_value
));
99
g_value_copy (
src_value
, dest_value);
297
boxed_proxy_value_copy (const GValue *
src_value
,
300
if (
src_value
->data[0].v_pointer)
304
key.type = G_VALUE_TYPE (
src_value
);
306
dest_value->data[0].v_pointer = node->copy (
src_value
->data[0].v_pointer);
309
dest_value->data[0].v_pointer =
src_value
->data[0].v_pointer;
469
GValue
src_value
, dest_value
local
[
all
...]
gvaluetransform.c
32
value_transform_memcpy_data0 (const GValue *
src_value
,
35
memcpy (&dest_value->data[0], &
src_value
->data[0], sizeof (
src_value
->data[0]));
51
value_transform_##func_name (const GValue *
src_value
, \
54
ctype c_value =
src_value
->data[0].from_member; \
143
value_transform_##func_name (const GValue *
src_value
, \
146
dest_value->data[0].v_int =
src_value
->data[0].from_member != 0; \
160
value_transform_##func_name (const GValue *
src_value
, \
164
src_value
->data[0].from_member); \
179
value_transform_bool_string (const GValue *
src_value
,
[
all
...]
gvaluetypes.c
46
value_copy_long0 (const GValue *
src_value
,
49
dest_value->data[0].v_long =
src_value
->data[0].v_long;
145
value_copy_int64 (const GValue *
src_value
,
148
dest_value->data[0].v_int64 =
src_value
->data[0].v_int64;
185
value_copy_float (const GValue *
src_value
,
188
dest_value->data[0].v_float =
src_value
->data[0].v_float;
225
value_copy_double (const GValue *
src_value
,
228
dest_value->data[0].v_double =
src_value
->data[0].v_double;
272
value_copy_string (const GValue *
src_value
,
275
dest_value->data[0].v_pointer = g_strdup (
src_value
->data[0].v_pointer)
[
all
...]
gparam.c
73
static void value_param_copy_value (const GValue *
src_value
,
75
static void value_param_transform_value (const GValue *
src_value
,
662
* @
src_value
: souce #GValue
667
* Transforms @
src_value
into @dest_value if possible, and then
680
const GValue *
src_value
,
687
g_return_val_if_fail (G_IS_VALUE (
src_value
), FALSE);
694
if (g_value_transform (
src_value
, &tmp_value) &&
762
value_param_copy_value (const GValue *
src_value
,
765
if (
src_value
->data[0].v_pointer)
766
dest_value->data[0].v_pointer = g_param_spec_ref (
src_value
->data[0].v_pointer)
[
all
...]
genums.c
67
static void value_flags_enum_copy_value (const GValue *
src_value
,
135
value_flags_enum_copy_value (const GValue *
src_value
,
138
dest_value->data[0].v_long =
src_value
->data[0].v_long;
gobject.c
150
static void g_value_object_copy_value (const GValue *
src_value
,
152
static void g_value_object_transform_value (const GValue *
src_value
,
[
all
...]
gparam.h
293
const GValue *
src_value
,
gtype.h
[
all
...]
Completed in 207 milliseconds