Home
last modified time | relevance | path

Searched refs:string_to_process (Results 1 – 3 of 3) sorted by relevance

/third_party/libphonenumber/cpp/src/phonenumbers/
Dregexp_adapter.h170 virtual bool Replace(string* string_to_process,
175 inline bool Replace(string* string_to_process, in Replace() argument
177 return Replace(string_to_process, false, replacement_string); in Replace()
180 inline bool GlobalReplace(string* string_to_process, in GlobalReplace() argument
182 return Replace(string_to_process, true, replacement_string); in GlobalReplace()
Dregexp_adapter_re2.cc136 virtual bool Replace(string* string_to_process, in Replace() argument
139 DCHECK(string_to_process); in Replace()
143 return RE2::GlobalReplace(string_to_process, utf8_regexp_, in Replace()
146 return RE2::Replace(string_to_process, utf8_regexp_, in Replace()
Dregexp_adapter_icu.cc181 bool Replace(string* string_to_process, in Replace() argument
184 DCHECK(string_to_process); in Replace()
188 IcuRegExpInput input(*string_to_process); in Replace()
220 *string_to_process = replaced_string; in Replace()