Home | History | Annotate | Download | only in i18n

Lines Matching refs:ce32

28 CollationData::getIndirectCE32(uint32_t ce32) const {
29 U_ASSERT(Collation::isSpecialCE32(ce32));
30 int32_t tag = Collation::tagFromCE32(ce32);
32 // Fetch the non-numeric-collation CE32.
33 ce32 = ce32s[Collation::indexFromCE32(ce32)];
35 ce32 = Collation::UNASSIGNED_CE32;
37 // Fetch the normal ce32 for U+0000.
38 ce32 = ce32s[0];
40 return ce32;
44 CollationData::getFinalCE32(uint32_t ce32) const {
45 if(Collation::isSpecialCE32(ce32)) {
46 ce32 = getIndirectCE32(ce32);
48 return ce32;