HomeSort by relevance Sort by last modified time
    Searched refs:utf32 (Results 1 - 9 of 9) 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/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 416 UnicodeString UnicodeString::fromUTF32(const UChar32 *utf32, int32_t length) {
432 utf32, length,
880 UnicodeString::toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const {
884 u_strToUTF32WithSub(utf32, capacity, &length32,
    [all...]
  /external/icu4c/test/cintltst/
ncnvtst.c 781 UChar32 *utf32 = (UChar32*)malloc(MAX_LENGTH*sizeof(UChar32)); local
    [all...]
nucnvtst.c 877 /*UTF32 LE*/
880 /*UTF32 BE*/
1154 static const uint8_t utf32[]={ local
1207 static const uint8_t utf32[]={ local
    [all...]
ccapitst.c 2800 utf32[]={ local
    [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp 1816 static const UChar32 utf32[] = { local
    [all...]
  /external/icu4c/common/unicode/
unistr.h     [all...]

Completed in 239 milliseconds