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

  /external/svox/pico/lib/
picobase.c 98 static picoos_uint32 base_utf32_lowercase (picoos_uint32 utf32)
103 lc = utf32;
104 if (((utf32 >= 65313) && (utf32 <= 65338))) {
105 lc = (utf32 + 32);
106 } else if (((utf32 >= 66560) && (utf32 <= 66599))) {
107 lc = (utf32 + 40);
108 } else if (((utf32 >= 7680) && (utf32 <= 9423)))
1144 picobase_utf32 utf32; local
1175 picobase_utf32 utf32; local
1203 picoos_uint32 utf32; local
1222 picoos_uint32 utf32; local
    [all...]
  /frameworks/native/libs/utils/
Unicode.cpp 145 char32_t utf32 = first_char; local
150 utf32 = (utf32 << 6) + (*cur++ & 0x3F);
153 utf32 &= ~(to_ignore_mask << (6 * (num_to_read - 1)));
156 return static_cast<int32_t>(utf32);
343 char32_t utf32; local
346 utf32 = (*cur_utf16++ - 0xD800) << 10;
347 utf32 |= *cur_utf16++ - 0xDC00;
348 utf32 += 0x10000;
350 utf32 = (char32_t) *cur_utf16++
381 char32_t utf32 = 0; local
    [all...]
  /external/harfbuzz_ng/test/api/
test-buffer.c 34 static const uint32_t utf32[7] = {'a', 'b', 0x20000, 'd', 'e', 'f', 'g'}; variable
49 "utf32",
73 for (i = 1; i < G_N_ELEMENTS (utf32) - 1; i++)
74 hb_buffer_add (b, utf32[i], i);
78 hb_buffer_add_utf32 (b, utf32, G_N_ELEMENTS (utf32), 1, G_N_ELEMENTS (utf32) - 2);
204 g_assert_cmphex (glyphs[i].codepoint, ==, utf32[1+i]);
212 g_assert_cmphex (glyphs[i].codepoint, ==, utf32[len-i]);
216 g_assert_cmphex (glyphs[i].codepoint, ==, utf32[1+i])
    [all...]
  /external/chromium/base/
utf_string_conversions_unittest.cc 157 const wchar_t* utf32; member in struct:base::WideToUTF8Case
178 WideToUTF8(convert_cases[i].utf32,
179 wcslen(convert_cases[i].utf32),
  /external/icu4c/common/
unistr.cpp 419 UnicodeString UnicodeString::fromUTF32(const UChar32 *utf32, int32_t length) {
435 utf32, length,
927 UnicodeString::toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const {
931 u_strToUTF32WithSub(utf32, capacity, &length32,
    [all...]
  /external/icu4c/test/cintltst/
ncnvtst.c 780 UChar32 *utf32 = (UChar32*)malloc(MAX_LENGTH*sizeof(UChar32)); local
    [all...]
nucnvtst.c 880 /*UTF32 LE*/
883 /*UTF32 BE*/
1157 static const uint8_t utf32[]={ local
1210 static const uint8_t utf32[]={ local
    [all...]
ccapitst.c 2754 utf32[]={ local
    [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp 1809 static const UChar32 utf32[] = { local
    [all...]
  /external/icu4c/common/unicode/
unistr.h     [all...]

Completed in 517 milliseconds