Lines Matching refs:text_
32 text_ = src.text_; in operator =()
38 return equal(text_.begin(), text_.end(), rhs.text_.begin()); in operator ==()
51 for (UnicodeText::const_iterator it = text_.begin(); it != text_.end(); in indexOf()
63 UnicodeText::const_iterator start_it = text_.begin(); in replace()
66 unicode_text.append(text_.begin(), start_it); in replace()
67 unicode_text.append(src.text_); in replace()
69 unicode_text.append(start_it, text_.end()); in replace()
70 text_ = unicode_text; in replace()
76 UnicodeText::const_iterator pos_it = text_.begin(); in setCharAt()
79 unicode_text.append(text_.begin(), pos_it); in setCharAt()
82 unicode_text.append(pos_it, text_.end()); in setCharAt()
83 text_ = unicode_text; in setCharAt()
94 UnicodeText::const_iterator start_it = text_.begin(); in tempSubString()
99 substring.text_.PointTo(start_it, end_it); in tempSubString()
106 cached_it_ = text_.begin(); in operator []()