Lines Matching full:code
23 * characters (code units or code points) in a UChar array.
37 * The iteration range is 0 to <code>length-1</code>.
48 * The iteration range is 0 to <code>length-1</code>.
64 * The iteration range is 0 to <code>end-1</code>.
120 * Generates a hash code for this iterator.
121 * @return the hash code.
136 * Sets the iterator to refer to the first code unit in its
137 * iteration range, and returns that code unit.
139 * @return the first code unit in its iteration range.
145 * Sets the iterator to refer to the first code unit in its
146 * iteration range, returns that code unit, and moves the position
147 * to the second code unit. This is an alternative to setToStart()
149 * @return the first code unit in its iteration range
155 * Sets the iterator to refer to the first code point in its
156 * iteration range, and returns that code unit,
160 * @return the first code point in its iteration range
166 * Sets the iterator to refer to the first code point in its
167 * iteration range, returns that code point, and moves the position
168 * to the second code point. This is an alternative to setToStart()
170 * @return the first code point in its iteration range.
176 * Sets the iterator to refer to the last code unit in its
177 * iteration range, and returns that code unit.
179 * @return the last code unit in its iteration range.
185 * Sets the iterator to refer to the last code point in its
186 * iteration range, and returns that code unit.
188 * @return the last code point in its iteration range.
194 * Sets the iterator to refer to the "position"-th code unit
196 * returns that code unit.
198 * @return the code unit
204 * Sets the iterator to refer to the beginning of the code point
205 * that contains the "position"-th code unit
207 * returns that code point.
208 * The current position is adjusted to the beginning of the code point
209 * (its first code unit).
211 * @return the code unit
217 * Returns the code unit the iterator currently refers to.
218 * @return the code unit the iterator currently refers to.
224 * Returns the code point the iterator currently refers to.
225 * @return the code point the iterator currently refers to.
231 * Advances to the next code unit in the iteration range (toward
232 * endIndex()), and returns that code unit. If there are no more
233 * code units to return, returns DONE.
234 * @return the next code unit in the iteration range.
240 * Gets the current code unit for returning and advances to the next code unit
243 * no more code units to return, returns DONE.
244 * @return the current code unit.
250 * Advances to the next code point in the iteration range (toward
251 * endIndex()), and returns that code point. If there are no more
252 * code points to return, returns DONE.
256 * @return the next code point in the iteration range.
262 * Gets the current code point for returning and advances to the next code point
265 * no more code points to return, returns DONE.
272 * Returns FALSE if there are no more code units or code points
276 * @return FALSE if there are no more code units or code points
283 * Advances to the previous code unit in the iteration range (toward
284 * startIndex()), and returns that code unit. If there are no more
285 * code units to return, returns DONE.
286 * @return the previous code unit in the iteration range.
292 * Advances to the previous code point in the iteration range (toward
293 * startIndex()), and returns that code point. If there are no more
294 * code points to return, returns DONE.
295 * @return the previous code point in the iteration range.
301 * Returns FALSE if there are no more code units or code points
305 * @return FALSE if there are no more code units or code points
314 * The movement is expressed in numbers of code units forward
327 * The movement is expressed in numbers of code points forward