Home | History | Annotate | Download | only in intltest

Lines Matching refs:order

191     Order *orders = getOrders(*iter, orderLength);
306 uint32_t order;
310 order = iter->previous(status);
313 if (CollationElementIterator::isIgnorable(order))
314 order = iter->previous(status);
322 if (U_FAILURE(status) && iter->getMaxExpansion(order) < count) {
536 * Testing the strength order
540 int order = 0x0123ABCD;
560 if (iter->strengthOrder(order) != 0x01230000) {
561 errln("Strength order for a primary strength collator should be the first 2 bytes");
566 if (iter->strengthOrder(order) != 0x0123AB00) {
567 errln("Strength order for a secondary strength collator should be the third byte");
572 order) != order) {
573 errln("Strength order for a tertiary strength collator should be the third byte");
586 int32_t order;
589 while ((order = iter.next(status)) != CollationElementIterator::NULLORDER)
592 appendHex(order, 8, target);