Lines Matching full:operator
262 // operator overloading ----------------------------------------------
265 * Equality operator.
272 virtual UBool operator==(const SearchIterator &that) const;
275 * Not-equal operator.
277 * @return FALSE if operator== returns TRUE, and vice versa.
280 UBool operator!=(const SearchIterator &that) const;
478 * Assignment operator. Sets this iterator to have the same behavior,
483 SearchIterator & operator=(const SearchIterator &that);
560 inline UBool SearchIterator::operator!=(const SearchIterator &that) const
562 return !operator==(that);