Lines Matching refs:that

41  * <tt>SearchIterator</tt> is an abstract base class that provides 
56 * <tt>SearchIterator</tt> provides an API that is similar to that of
86 * Copy constructor that creates a SearchIterator instance with the same
103 * that's affected.
148 * Returns the index to the match in the text string that was searched.
155 * @return index of a substring within the text string that is being
182 * Returns the text that was matched by the most recent call to
198 * Set the BreakIterator that will be used to restrict the points
201 * @param breakiter A BreakIterator that will be used to restrict the
215 * Returns the BreakIterator that is used to restrict the points at
216 * which matches are detected. This will be the same object that was
218 * Note that <tt>NULL</tt> is a legal value; it means that break
266 * @param that SearchIterator instance to be compared.
272 virtual UBool operator==(const SearchIterator &that) const;
276 * @param that SearchIterator instance to be compared.
280 UBool operator!=(const SearchIterator &that) const;
286 * iterating over the same text, as this one. Note that all data will be
295 * pattern. The iterator is adjusted so that its current index (as
311 * that its current index (as returned by <tt>getOffset</tt>) is the
329 * search pattern. The iterator is adjusted so that its current index
344 * text matches the search pattern. The iterator is adjusted so that its
370 * The iterator is adjusted so that its current index (as returned by
386 * The iterator is adjusted so that its current index (as returned by
445 * @param breakiter A {@link BreakIterator} that is used to restrict the
467 * @param breakiter A {@link BreakIterator} that is used to restrict the
486 * @param that instance to be copied.
489 SearchIterator & operator=(const SearchIterator &that);
499 * in the target text that make up the match. If no match is found, the
521 * in the target text that make up the match. If no match is found, the
566 inline UBool SearchIterator::operator!=(const SearchIterator &that) const
568 return !operator==(that);