Lines Matching refs:set
40 * UnicodeSetIterator it(set);
45 * <p>Each item in the set is accessed as a string. Set elements
52 * UnicodeSetIterator it(set);
101 * Create an iterator over the given set. The iterator is valid
102 * only so long as <tt>set</tt> is valid.
103 * @param set set to iterate over
106 UnicodeSetIterator(const UnicodeSet& set);
111 * constructor allowing the target to be set later.
185 * Advances the iteration position to the next element in the set,
187 * If there are no more elements in the set, return false.
203 * @return true if there was another element in the set.
209 * Returns the next element in the set, either a code point range
210 * or a string. If there are no more elements in the set, return
224 * @return true if there was another element in the set.
230 * Sets this iterator to visit the elements of the given set and
231 * resets it to the start of that set. The iterator is valid only
232 * so long as <tt>set</tt> is valid.
233 * @param set the set to iterate over.
236 void reset(const UnicodeSet& set);
239 * Resets this iterator to the start of the set.
264 // endElement set to -1. Leave them as int32_t's.
265 /** The set
267 const UnicodeSet* set;