HomeSort by relevance Sort by last modified time
    Searched refs:utf8char (Results 1 - 5 of 5) sorted by null

  /external/svox/pico/lib/
picobase.c 1139 picobase_utf8char utf8char; local
1170 picobase_utf8char utf8char; local
1201 picobase_utf8char utf8char; local
1220 picobase_utf8char utf8char; local
    [all...]
picobase.h 101 * Gets next UTF8 character 'utf8char' from the UTF8 string
107 * @param utf8char : zero terminated UTF8 character containing 1 to 4 bytes (output)
114 picobase_utf8char utf8char);
118 * without copying the char to utf8char
125 * Gets previous UTF8 character 'utf8char' from the UTF8 string
131 * @param utf8char : zero terminated UTF8 character containing 1 to 4 bytes (output)
138 picobase_utf8char utf8char);
142 * without copying the char to utf8char
picokdt.c 2050 picoos_uint8 utf8char[PICOBASE_UTF8_MAXLEN + 1]; local
    [all...]
picopr.c 628 picobase_utf8char utf8char; local
634 picobase_get_next_utf8char(stokenStr, PR_MAX_DATA_LEN, & i, utf8char);
635 id = picoktab_graphOffset(pr->graphs, utf8char);
640 val = ((10 * val) + (int)((int)utf8char[0] - (int)'0'));
642 } else if ((utf8char[0] >= '0') && (utf8char[0] <= '9')) {
643 val = 10 * val + ((int)utf8char[0] - (int)'0');
2218 picobase_utf8char utf8char; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.cpp 38 GOwnPtr<char> utf8char; local
39 utf8char.set(g_ucs4_to_utf8(reinterpret_cast<gunichar*>(&ch), 1, 0, 0, &gerror.outPtr()));
44 utf8caseFolded.set(g_utf8_casefold(utf8char.get(), -1));

Completed in 698 milliseconds