Home | History | Annotate | Download | only in tests

Lines Matching refs:items_written

90   glong items_read, items_written;
142 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, &items_written, &error);
151 items_written != ucs4_len)
159 ucs4_result = g_utf8_to_ucs4_fast (utf8, -1, &items_written);
162 items_written != ucs4_len)
168 utf8_result = g_ucs4_to_utf8 (ucs4_result, -1, &items_read, &items_written, &error);
177 items_written != strlen (utf8))
233 if (!(utf16_from_utf8 = g_utf8_to_utf16 (utf8, -1, &items_read, &items_written, &error)))
240 utf16_count (utf16_from_utf8) != items_written)
246 if (!(utf16_from_ucs4 = g_ucs4_to_utf16 (ucs4, -1, &items_read, &items_written, &error)))
253 utf16_count (utf16_from_ucs4) != items_written)
266 if (!(utf8_result = g_utf16_to_utf8 (utf16_from_utf8, -1, &items_read, &items_written, &error)))
273 items_written != strlen (utf8))
279 if (!(ucs4_result = g_utf16_to_ucs4 (utf16_from_ucs4, -1, &items_read, &items_written, &error)))
286 items_written != ucs4_len)