Home
last modified time | relevance | path

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

/external/svox/pico/lib/
Dpicobase.c98 static picoos_uint32 base_utf32_lowercase (picoos_uint32 utf32) in base_utf32_lowercase() argument
103 lc = utf32; in base_utf32_lowercase()
104 if (((utf32 >= 65313) && (utf32 <= 65338))) { in base_utf32_lowercase()
105 lc = (utf32 + 32); in base_utf32_lowercase()
106 } else if (((utf32 >= 66560) && (utf32 <= 66599))) { in base_utf32_lowercase()
107 lc = (utf32 + 40); in base_utf32_lowercase()
108 } else if (((utf32 >= 7680) && (utf32 <= 9423))) { in base_utf32_lowercase()
109 switch (utf32) { in base_utf32_lowercase()
131 if ( !(((utf32) % 2 == 1))) { in base_utf32_lowercase()
132 lc = (utf32 + 1); in base_utf32_lowercase()
[all …]
/external/chromium/base/
Dutf_string_conversions_unittest.cc157 const wchar_t* utf32; in TEST() member
178 WideToUTF8(convert_cases[i].utf32, in TEST()
179 wcslen(convert_cases[i].utf32), in TEST()
/external/icu4c/common/
Dunistr.cpp416 UnicodeString UnicodeString::fromUTF32(const UChar32 *utf32, int32_t length) { in fromUTF32() argument
432 utf32, length, in fromUTF32()
880 UnicodeString::toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const { in toUTF32() argument
884 u_strToUTF32WithSub(utf32, capacity, &length32, in toUTF32()
/external/icu4c/test/cintltst/
Dncnvtst.c781 UChar32 *utf32 = (UChar32*)malloc(MAX_LENGTH*sizeof(UChar32)); in TestRegressionUTF32() local
794 UTF32_APPEND_CHAR_SAFE(utf32, offset32, MAX_LENGTH, currCh); in TestRegressionUTF32()
798 …(const uint8_t *)utf32, offset32*sizeof(UChar32), "UTF32_PlatformEndian", 0, TRUE, U_ZERO_ERROR ))… in TestRegressionUTF32()
801 if(!convertToU((const uint8_t *)utf32, offset32*sizeof(UChar32), in TestRegressionUTF32()
807 free(utf32); in TestRegressionUTF32()
Dnucnvtst.c1154 static const uint8_t utf32[]={ in TestNewConvertWithBufferSizes() local
1199 testConvertToU(utf32, sizeof(utf32), in TestNewConvertWithBufferSizes()
1207 static const uint8_t utf32[]={ in TestNewConvertWithBufferSizes() local
1252 testConvertToU(utf32, sizeof(utf32), in TestNewConvertWithBufferSizes()
Dccapitst.c2800 utf32[]={ in TestConvertAlgorithmic() local
2873 length=ucnv_fromAlgorithmic(cnv, UCNV_UTF32, target, 0, (const char *)utf32, 4, &errorCode); in TestConvertAlgorithmic()
/external/icu4c/test/intltest/
Dustrtest.cpp1816 static const UChar32 utf32[] = { in TestUTF32() local
1824 UnicodeString from32 = UnicodeString::fromUTF32(utf32, LENGTHOF(utf32)); in TestUTF32()
/external/icu4c/common/unicode/
Dunistr.h1648 int32_t toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const;
3070 static UnicodeString fromUTF32(const UChar32 *utf32, int32_t length);