Home | History | Annotate | Download | only in common

Lines Matching refs:that

51 UCharCharacterIterator::UCharCharacterIterator(const UCharCharacterIterator& that)
52 : CharacterIterator(that),
53 text(that.text)
58 UCharCharacterIterator::operator=(const UCharCharacterIterator& that) {
59 CharacterIterator::operator=(that);
60 text = that.text;
68 UCharCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
69 if (this == &that) {
72 if (typeid(*this) != typeid(that)) {
76 UCharCharacterIterator& realThat = (UCharCharacterIterator&)that;