Lines Matching refs:that
179 UBool SearchIterator::operator==(const SearchIterator &that) const in operator ==()
181 if (this == &that) { in operator ==()
184 return (m_breakiterator_ == that.m_breakiterator_ && in operator ==()
185 m_search_->isCanonicalMatch == that.m_search_->isCanonicalMatch && in operator ==()
186 m_search_->isOverlap == that.m_search_->isOverlap && in operator ==()
187 m_search_->elementComparisonType == that.m_search_->elementComparisonType && in operator ==()
188 m_search_->matchedIndex == that.m_search_->matchedIndex && in operator ==()
189 m_search_->matchedLength == that.m_search_->matchedLength && in operator ==()
190 m_search_->textLength == that.m_search_->textLength && in operator ==()
191 getOffset() == that.getOffset() && in operator ==()
192 (uprv_memcmp(m_search_->text, that.m_search_->text, in operator ==()
398 SearchIterator & SearchIterator::operator=(const SearchIterator &that) in operator =() argument
400 if (this != &that) { in operator =()
401 m_breakiterator_ = that.m_breakiterator_; in operator =()
402 m_text_ = that.m_text_; in operator =()
403 m_search_->breakIter = that.m_search_->breakIter; in operator =()
404 m_search_->isCanonicalMatch = that.m_search_->isCanonicalMatch; in operator =()
405 m_search_->isOverlap = that.m_search_->isOverlap; in operator =()
406 m_search_->elementComparisonType = that.m_search_->elementComparisonType; in operator =()
407 m_search_->matchedIndex = that.m_search_->matchedIndex; in operator =()
408 m_search_->matchedLength = that.m_search_->matchedLength; in operator =()
409 m_search_->text = that.m_search_->text; in operator =()
410 m_search_->textLength = that.m_search_->textLength; in operator =()