Searched refs:values_out (Results 1 – 1 of 1) sorted by relevance
/third_party/glib/gobject/tests/ |
D | properties.c | 367 GValue values_out[4] = { G_VALUE_INIT }; in properties_testv_with_no_properties() local 373 g_object_getv (G_OBJECT (test_obj), 4, prop_names, values_out); in properties_testv_with_no_properties() 376 g_assert_cmpint (g_value_get_int (&values_out[0]), ==, 42); in properties_testv_with_no_properties() 377 g_assert_true (g_value_get_boolean (&values_out[1])); in properties_testv_with_no_properties() 378 g_assert_cmpstr (g_value_get_string (&values_out[2]), ==, "Hello"); in properties_testv_with_no_properties() 379 g_assert_cmpstr (g_value_get_string (&values_out[3]), ==, NULL); in properties_testv_with_no_properties() 382 g_value_unset (&values_out[i]); in properties_testv_with_no_properties() 393 GValue values_out[4] = { G_VALUE_INIT }; in properties_testv_with_valid_properties() local 411 g_object_getv (G_OBJECT (test_obj), 4, prop_names, values_out); in properties_testv_with_valid_properties() 413 g_assert_cmpint (g_value_get_int (&values_out[0]), ==, 100); in properties_testv_with_valid_properties() [all …]
|