Home | History | Annotate | Download | only in text

Lines Matching refs:order

84      * specified comparison order.
85 * @param order collation order returned by previous or next.
91 public int getMaxExpansion(int order) {
92 return NativeCollation.getMaxExpansion(m_collelemiterator_, order);
132 * Gets the primary order of a collation order.
133 * @param order the collation order
134 * @return the primary order of a collation order.
137 public static int primaryOrder(int order) {
138 return ((order & PRIMARY_ORDER_MASK_) >> PRIMARY_ORDER_SHIFT_) &
143 * Gets the secondary order of a collation order.
144 * @param order the collation order
145 * @return the secondary order of a collation order.
148 public static int secondaryOrder(int order) {
149 return (order & SECONDARY_ORDER_MASK_) >> SECONDARY_ORDER_SHIFT_;
153 * Gets the tertiary order of a collation order.
154 * @param order the collation order
155 * @return the tertiary order of a collation order.
158 public static int tertiaryOrder(int order) {
159 return order & TERTIARY_ORDER_MASK_;
197 * ICU constant primary order mask for collation elements
201 * ICU constant secondary order mask for collation elements
205 * ICU constant tertiary order mask for collation elements
209 * ICU constant primary order shift for collation elements
213 * ICU constant secondary order shift for collation elements