Home | History | Annotate | Download | only in i18n

Lines Matching defs:ce

51     uint32_t ce;
69 void put(uint32_t ce, int32_t ixLow, int32_t ixHigh);
92 void RCEBuffer::put(uint32_t ce, int32_t ixLow, int32_t ixHigh)
107 buffer[bufferIndex].ce = ce;
147 void PCEBuffer::put(uint64_t ce, int32_t ixLow, int32_t ixHigh)
162 buffer[bufferIndex].ce = ce;
207 uint64_t UCollationPCE::processCE(uint32_t ce)
212 // We could apply the mask to ce and then
216 tertiary = ucol_tertiaryOrder(ce);
220 secondary = ucol_secondaryOrder(ce);
224 primary = ucol_primaryOrder(ce);
232 // **** the *second* CE is marked as a continuation, so ****
235 if ((toShift && variableTop > ce && primary != 0)
335 int32_t ce = cei->next(*status);
338 if (ce == UCOL_NULLORDER) {
343 result = processCE((uint32_t)ce);
389 int32_t ce;
394 ce = cei->previous(*status);
397 if (ce == UCOL_NULLORDER) {
405 rceb.put((uint32_t)ce, low, high);
406 } while ((ce & UCOL_PRIMARYORDERMASK) == 0 || isContinuation(ce));
412 result = processCE(rcei->ce);
444 return pcei->ce;