Home | History | Annotate | Download | only in unicode

Lines Matching defs:set

37  * UnicodeSetIterator it(set);
42 * <p>Each item in the set is accessed as a string. Set elements
49 * UnicodeSetIterator it(set);
102 * Create an iterator over the given set. The iterator is valid
103 * only so long as <tt>set</tt> is valid.
104 * @param set set to iterate over
107 UnicodeSetIterator(const UnicodeSet& set);
112 * constructor allowing the target to be set later.
169 * Advances the iteration position to the next element in the set,
171 * If there are no more elements in the set, return false.
187 * @return true if there was another element in the set.
193 * Returns the next element in the set, either a code point range
194 * or a string. If there are no more elements in the set, return
208 * @return true if there was another element in the set.
214 * Sets this iterator to visit the elements of the given set and
215 * resets it to the start of that set. The iterator is valid only
216 * so long as <tt>set</tt> is valid.
217 * @param set the set to iterate over.
220 void reset(const UnicodeSet& set);
223 * Resets this iterator to the start of the set.
248 // endElement set to -1. Leave them as int32_t's.
249 /** The set
252 const UnicodeSet* set;