Lines Matching defs:next

82  *      int primaryOrder = CollationElementIterator.primaryOrder(collationElementIterator.next());
89 * <code>CollationElementIterator.next</code> returns the collation order
90 * of the next character. A collation order consists of primary order,
93 * is its primary order; the next 8 bits is the secondary order and the
124 * Resets the cursor to the beginning of the string. The next call
125 * to next() will return the first collation element in the string.
134 * Get the next collation element in the string. <p>This iterator iterates
138 * collation element [or ordering priority] of the next character in the
141 * pointing to and then updates the internal pointer to point to the next element.
143 * means that when you change direction while iterating (i.e., call next() and
144 * then call previous(), or call previous() and then call next()), you'll get
147 * @return the next collation element
149 public int next()
152 return icuIterator.next();
164 * returns that element, while next() returns the current element and then
166 * iterating (i.e., call next() and then call previous(), or call previous()
167 * and then call next()), you'll get back the same element twice.</p>
213 * collation elements). The value returned by the next call to next()
216 * character sequence, the result of the next call to next() is the
232 * Returns the character offset in the original text corresponding to the next
234 * corresponding to the collation element that will be returned by the next
235 * call to next().) This value will always be the index of the FIRST character
242 * element that will be returned by the next call to next().
255 * @param order a collation order returned by previous or next.