HomeSort by relevance Sort by last modified time
    Searched defs:items_written (Results 1 - 4 of 4) sorted by null

  /external/bluetooth/glib/tests/
convert-test.c 147 glong items_written, items_written2; local
154 result = g_utf8_to_ucs4_fast (utf8, utf8_len, &items_written);
156 g_assert (items_written == ucs4_len);
158 for (i = 0; i <= items_written; i++)
165 result = g_utf8_to_ucs4 (utf8, utf8_len, &items_read, &items_written, &error);
177 for (i = 0; i <= items_written; i++)
192 g_assert (items_written == ucs4_len);
194 for (i = 0; i <= items_written; i++)
212 g_assert (items_written == ucs4_len);
214 for (i = 0; i <= items_written; i++
236 glong items_written, items_written2; local
300 glong items_written, items_written2; local
376 glong items_written, items_written2; local
448 glong items_written, items_written2; local
516 glong items_written, items_written2; local
    [all...]
unicode-encoding.c 90 glong items_read, items_written; local
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))
    [all...]
  /external/srec/portable/src/
PFileWrap.c 76 size_t items_written; local
78 items_written = fwrite ( buffer, size, *count, (FILE *)self );
80 if ( items_written == ( *count ) )
83 *count = items_written;
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 94 glong items_written; local
95 text = g_utf16_to_utf8(reinterpret_cast<const gunichar2*>(aText), aLength, NULL, &items_written, NULL);
96 length = items_written;

Completed in 1586 milliseconds