Home | History | Annotate | Download | only in i18n

Lines Matching full:uc32

8788         UChar32 uc32 = -1;
8791 U8_GET_OR_FFFD((const uint8_t*)source, 0, equalLength, sourceLength, uc32);
8792 if (uc32 >= 0x10000 || ucol_unsafeCP((UChar)uc32, coll)) {
8795 bSawNonLatin1 |= (uc32 > 0xff);
8798 U8_GET_OR_FFFD((const uint8_t*)target, 0, equalLength, targetLength, uc32);
8799 if (uc32 >= 0x10000 || ucol_unsafeCP((UChar)uc32, coll)) {
8802 bSawNonLatin1 |= (uc32 > 0xff);
8810 U8_PREV_OR_FFFD((uint8_t*)source, 0, equalLength, uc32);
8811 bSawNonLatin1 |= (uc32 > 0xff);
8812 if (uc32 < 0x10000 && !ucol_unsafeCP((UChar)uc32, coll)) {