Lines Matching full:result3
145 gunichar *result, *result2, *result3;
186 result3 = g_utf8_to_ucs4 (utf8, utf8_len, NULL, NULL, &error3);
205 g_assert (result3 == NULL);
218 g_assert (result3);
220 g_assert (result3[i] == ucs4[i]);
224 g_free (result3);
234 gchar *result, *result2, *result3;
261 result3 = g_ucs4_to_utf8 (ucs4, ucs4_len, NULL, NULL, &error3);
271 g_assert (result3 == NULL);
283 g_assert (result3);
284 g_assert (strcmp (result3, utf8) == 0);
288 g_free (result3);
298 gunichar2 *result, *result2, *result3;
326 result3 = g_utf8_to_utf16 (utf8, utf8_len, NULL, NULL, &error3);
345 g_assert (result3 == NULL);
358 g_assert (result3);
360 g_assert (result3[i] == utf16[i]);
364 g_free (result3);
374 gchar *result, *result2, *result3;
400 result3 = g_utf16_to_utf8 (utf16, utf16_len, NULL, NULL, &error3);
419 g_assert (result3 == NULL);
431 g_assert (result3);
432 g_assert (strcmp (result3, utf8) == 0);
436 g_free (result3);
446 gunichar2 *result, *result2, *result3;
475 result3 = g_ucs4_to_utf16 (ucs4, -1, NULL, NULL, &error3);
485 g_assert (result3 == NULL);
498 g_assert (result3);
500 g_assert (result3[i] == utf16[i]);
504 g_free (result3);
514 gunichar *result, *result2, *result3;
541 result3 = g_utf16_to_ucs4 (utf16, utf16_len, NULL, NULL, &error3);
561 g_assert (result3 == NULL);
574 g_assert (result3);
576 g_assert (result3[i] == ucs4[i]);
580 g_free (result3);