Lines Matching refs:order

94         // the combining characters must be in their canonical order
110 // Since rules can be specified in any order in the string
119 int order = 0;
140 order = increment(entry.getStrength(), order);
144 addExpandOrder(groupChars, expChars, order);
148 addOrder(Character.toCodePoint(ch, groupChars.charAt(1)), order);
150 addContractOrder(groupChars, order);
154 addOrder(ch, order);
189 // If so, just map the precomposed character to that order.
204 //has an entry in our order table, this order is not necessary
205 //to be a contraction order, if it does have one, add an entry
206 //for the precomposed character by using the same order, the
210 int order = getCharOrder(s.charAt(0));
211 if (order != RBCollationTables.UNMAPPED) {
212 addOrder(c, order);
218 int order = getCharOrder(s.codePointAt(0));
219 if (order != RBCollationTables.UNMAPPED) {
220 addOrder(c, order);
258 * that character to see what its real collation order is and
268 int order = valueList[j];
269 if (order < RBCollationTables.EXPANDCHARINDEX && order > CHARINDEX) {
271 int ch = order - CHARINDEX;
289 * Increment of the last order based on the comparison level.
296 // increment priamry order and mask off secondary and tertiary difference
302 // increment secondary order and mask off tertiary difference
310 // increment tertiary order
321 * Adds a character and its designated order into the collation table.
325 // See if the char already has an order in the mapping table
326 int order = mapping.elementAt(ch);
328 if (order >= RBCollationTables.CONTRACTCHARINDEX) {
442 int order = mapping.elementAt(ch);
444 if (order >= RBCollationTables.CONTRACTCHARINDEX) {
445 Vector groupList = getContractValuesImpl(order - RBCollationTables.CONTRACTCHARINDEX);
447 order = pair.value;
449 return order;