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

  /external/svox/pico/lib/
picobase.h 55 * the UTF8 string 'utf8str' of maximum length maxlen (in bytes)
56 * @param utf8str : a string encoded in UTF8
57 * @param maxlen : max length (in bytes) accessible in utf8str
63 picoos_int32 picobase_utf8_length(const picoos_uint8 *utf8str,
80 * Converts the content of 'utf8str' to lowercase and stores it on 'lowercase'
82 * @param utf8str : utf8 string
88 picoos_int32 picobase_lowercase_utf8_str (picoos_uchar utf8str[], picoos_char lowercase[], picoos_int32 lowercaseMaxLen, picoos_uint8 * done);
91 * Converts the content of 'utf8str' to upperrcase and stores it on 'uppercase'
92 * @param utf8str : utf8 string
98 picoos_int32 picobase_uppercase_utf8_str (picoos_uchar utf8str[], picoos_char uppercase[], int uppercaseMaxLen, picoos_uint8 * done)
    [all...]
picobase.c 52 picoos_int32 picobase_utf8_length(const picoos_uint8 *utf8str,
64 while (ok && (i < maxlen) && (utf8str[i] != '\000')) {
66 if ((utf8str[i] >= (picoos_uint8)'\200') &&
67 (utf8str[i] < (picoos_uint8)'\300')) {
72 } else if (utf8str[i] < (picoos_uint8)'\200') {
74 } else if (utf8str[i] >= (picoos_uint8)'\370') {
76 } else if (utf8str[i] >= (picoos_uint8)'\360') {
79 } else if (utf8str[i] >= (picoos_uint8)'\340') {
82 } else if (utf8str[i] >= (picoos_uint8)'\300') {
    [all...]
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_tree_model.cc 221 const gchar* utf8str = g_value_get_string(&value); local
222 ret_val = UTF8ToUTF16(utf8str);

Completed in 641 milliseconds