Lines Matching full:next
25 * method that returns the next UnicodeString since in C++ this can
38 * 'next' that you call. In general the StringEnumeration is
46 * <p>The pointers returned by next, unext, and snext become invalid
47 * upon any subsequent call to the enumeration's destructor, next,
100 * <p>Returns the next element as a NUL-terminated char*. If there
107 * deleted by the caller. The pointer is valid until the next call
108 * to next, unext, snext, reset, or the enumerator's destructor.</p>
121 * Either next() or snext() must be implemented differently by a subclass.
129 virtual const char* next(int32_t *resultLength, UErrorCode& status);
132 * <p>Returns the next element as a NUL-terminated UChar*. If there
139 * deleted by the caller. The pointer is valid until the next call
140 * to next, unext, snext, reset, or the enumerator's destructor.</p>
157 * <p>Returns the next element a UnicodeString*. If there are no
161 * deleted by the caller. The pointer is valid until the next call
162 * to next, unext, snext, reset, or the enumerator's destructor.</p>
167 * Starting with ICU 2.8, the default implementation calls next()
169 * Either next() or snext() must be implemented differently by a subclass.
183 * <p>Previous pointers returned by next, unext, or snext become
251 * especially for implementations of snext() in terms of next().
253 * of snext() to avoid potential infinite loops between next() and snext().
259 * const char *s=next(&resultLength, status);