Home
last modified time | relevance | path

Searched refs:unicode_text (Results 1 – 2 of 2) sorted by relevance

/third_party/libphonenumber/cpp/src/phonenumbers/
Dunicodestring.cc65 UnicodeText unicode_text; in replace() local
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()
78 UnicodeText unicode_text; in setCharAt() local
79 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()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/text/kernels/
Dregex_replace_op.cc28 icu::UnicodeString unicode_text = icu::UnicodeString::fromUTF8(text); in RegexReplace() local
29 matcher->reset(unicode_text); in RegexReplace()