Searched refs:utf32 (Results 1 - 8 of 8) sorted by relevance

/external/svox/pico/lib/
H A Dpicobase.c98 static picoos_uint32 base_utf32_lowercase (picoos_uint32 utf32) argument
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 <
496 base_utf32_uppercase(picoos_uint32 utf32) argument
1092 picobase_utf32_to_utf8(picobase_utf32 utf32, picobase_utf8 utf8[], picoos_int32 utf8MaxLen, picoos_uint8 * done) argument
1144 picobase_utf32 utf32; local
1175 picobase_utf32 utf32; local
1203 picoos_uint32 utf32; local
1222 picoos_uint32 utf32; local
[all...]
/external/chromium/base/
H A Dutf_string_conversions_unittest.cc157 const wchar_t* utf32; member in struct:base::WideToUTF8Case
178 WideToUTF8(convert_cases[i].utf32,
179 wcslen(convert_cases[i].utf32),
/external/icu4c/common/
H A Dunistr.cpp416 UnicodeString UnicodeString::fromUTF32(const UChar32 *utf32, int32_t length) { argument
432 utf32, length,
880 UnicodeString::toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const { argument
884 u_strToUTF32WithSub(utf32, capacity, &length32,
/external/icu4c/test/cintltst/
H A Dncnvtst.c781 UChar32 *utf32 = (UChar32*)malloc(MAX_LENGTH*sizeof(UChar32)); local
794 UTF32_APPEND_CHAR_SAFE(utf32, offset32, MAX_LENGTH, currCh);
798 (const uint8_t *)utf32, offset32*sizeof(UChar32), "UTF32_PlatformEndian", 0, TRUE, U_ZERO_ERROR )) {
801 if(!convertToU((const uint8_t *)utf32, offset32*sizeof(UChar32),
807 free(utf32);
H A Dnucnvtst.c1154 static const uint8_t utf32[]={ local
1199 testConvertToU(utf32, sizeof(utf32),
1207 static const uint8_t utf32[]={ local
1252 testConvertToU(utf32, sizeof(utf32),
H A Dccapitst.c2800 utf32[]={ local
2873 length=ucnv_fromAlgorithmic(cnv, UCNV_UTF32, target, 0, (const char *)utf32, 4, &errorCode);
/external/icu4c/test/intltest/
H A Dustrtest.cpp1816 static const UChar32 utf32[] = { local
1824 UnicodeString from32 = UnicodeString::fromUTF32(utf32, LENGTHOF(utf32));
/external/icu4c/common/unicode/
H A Dunistr.h1638 * @param utf32 destination string buffer, can be NULL if capacity==0
1639 * @param capacity the number of UChar32s available at utf32
1648 int32_t toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const;
3064 * @param utf32 UTF-32 input string. Must not be NULL.
3070 static UnicodeString fromUTF32(const UChar32 *utf32, int32_t length);

Completed in 191 milliseconds