Lines Matching refs:values_out
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()
414 g_assert_true (g_value_get_boolean (&values_out[1])); in properties_testv_with_valid_properties()
415 g_assert_cmpstr (g_value_get_string (&values_out[2]), ==, "pigs"); in properties_testv_with_valid_properties()
416 g_assert_cmpstr (g_value_get_string (&values_out[3]), ==, "fly"); in properties_testv_with_valid_properties()
418 for (i = 0; i < G_N_ELEMENTS (values_out); i++) in properties_testv_with_valid_properties()
419 g_value_unset (&values_out[i]); in properties_testv_with_valid_properties()
426 g_object_getv (G_OBJECT (test_obj), 4, prop_names, values_out); in properties_testv_with_valid_properties()
428 g_assert_cmpint (g_value_get_int (&values_out[0]), ==, 100); in properties_testv_with_valid_properties()
429 g_assert_true (g_value_get_boolean (&values_out[1])); in properties_testv_with_valid_properties()
431 g_assert_cmpstr (g_value_get_string (&values_out[2]), ==, "Elmo knows"); in properties_testv_with_valid_properties()
432 g_assert_cmpstr (g_value_get_string (&values_out[3]), ==, "where you live"); in properties_testv_with_valid_properties()
436 for (i = 0; i < G_N_ELEMENTS (values_out); i++) in properties_testv_with_valid_properties()
437 g_value_unset (&values_out[i]); in properties_testv_with_valid_properties()