Lines Matching full:iteration
37 * The iteration range is 0 to <code>length-1</code>.
48 * The iteration range is 0 to <code>length-1</code>.
53 * iteration range, the behavior of this object is undefined.
56 * @param position The starting position of the iteration
64 * The iteration range is 0 to <code>end-1</code>.
69 * form a valid iteration range or "position" is outside the valid
70 * iteration range, the behavior of this object is undefined.
73 * @param textBegin The begin position of the iteration range
74 * @param textEnd The end position of the iteration range
75 * @param position The starting position of the iteration
137 * iteration range, and returns that code unit.
138 * This can be used to begin an iteration with next().
139 * @return the first code unit in its iteration range.
146 * iteration range, returns that code unit, and moves the position
148 * for forward iteration with nextPostInc().
149 * @return the first code unit in its iteration range
156 * iteration range, and returns that code unit,
157 * This can be used to begin an iteration with next32().
158 * Note that an iteration with next32PostInc(), beginning with,
160 * @return the first code point in its iteration range
167 * iteration range, returns that code point, and moves the position
169 * for forward iteration with next32PostInc().
170 * @return the first code point in its iteration range.
177 * iteration range, and returns that code unit.
178 * This can be used to begin an iteration with previous().
179 * @return the last code unit in its iteration range.
186 * iteration range, and returns that code unit.
187 * This can be used to begin an iteration with previous32().
188 * @return the last code point in its iteration range.
231 * Advances to the next code unit in the iteration range (toward
234 * @return the next code unit in the iteration range.
241 * in the iteration range
250 * Advances to the next code point in the iteration range (toward
253 * Note that iteration with "pre-increment" semantics is less
254 * efficient than iteration with "post-increment" semantics
256 * @return the next code point in the iteration range.
263 * in the iteration range
273 * at or after the current position in the iteration range.
275 * iteration.
277 * at or after the current position in the iteration range.
283 * Advances to the previous code unit in the iteration range (toward
286 * @return the previous code unit in the iteration range.
292 * Advances to the previous code point in the iteration range (toward
295 * @return the previous code point in the iteration range.
302 * before the current position in the iteration range.
304 * iteration.
306 * before the current position in the iteration range.
313 * iteration range, or relative to the current position itself.
326 * iteration range, or relative to the current position itself.
344 * Copies the UChar array under iteration into the UnicodeString
347 * @param result Receives a copy of the text under iteration.