Home | History | Annotate | Download | only in common

Lines Matching full:that

70 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
71 ForwardCharacterIterator(that),
72 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
77 CharacterIterator::operator=(const CharacterIterator &that) {
78 ForwardCharacterIterator::operator=(that);
79 textLength = that.textLength;
80 pos = that.pos;
81 begin = that.begin;
82 end = that.end;