Searched refs:unicode_text (Results 1 – 2 of 2) sorted by relevance
65 UnicodeText unicode_text; in replace() local66 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()78 UnicodeText unicode_text; in setCharAt() local79 unicode_text.append(text_.begin(), pos_it); in setCharAt()80 unicode_text.push_back(c); in setCharAt()82 unicode_text.append(pos_it, text_.end()); in setCharAt()83 text_ = unicode_text; in setCharAt()
28 icu::UnicodeString unicode_text = icu::UnicodeString::fromUTF8(text); in RegexReplace() local29 matcher->reset(unicode_text); in RegexReplace()