Lines Matching full:order
44 uint32_t order;
177 uint32_t order;
190 order = ucol_next(elements, &status);
193 if (order == (uint32_t)UCOL_NULLORDER) {
198 cont = isContinuation(order);
199 order &= strengthMask;
201 if (toShift && variableTop > order && (order & UCOL_PRIMARYORDERMASK) != 0) {
203 order &= UCOL_PRIMARYORDERMASK;
205 order = UCOL_IGNORABLE;
208 } while (order == UCOL_IGNORABLE);
211 order |= UCOL_CONTINUATION_MARKER;
214 ceb[offset].order = order;
227 uint32_t order;
240 order = ucol_previous(elements, &status);
243 if (order == (uint32_t)UCOL_NULLORDER) {
247 cont = isContinuation(order);
248 order &= strengthMask;
250 if (toShift && variableTop > order && (order & UCOL_PRIMARYORDERMASK) != 0) {
252 order &= UCOL_PRIMARYORDERMASK;
254 order = UCOL_IGNORABLE;
257 } while (order == UCOL_IGNORABLE);
262 order |= UCOL_CONTINUATION_MARKER;
265 ceb[offset].order = order;
307 ceb[0].order = UCOL_NULLORDER;
764 if (tcei->order != pce) {
773 tOffset += (*badCharacterTable)[tcei->order] - badCharacterTable->minLengthInChars(pIndex + 1);
811 if (nextCEI.lowOffset == nextCEI.highOffset && nextCEI.order != (uint32_t)UCOL_NULLORDER) {