Searched refs:string_to_process (Results 1 – 3 of 3) sorted by relevance
/third_party/libphonenumber/cpp/src/phonenumbers/ |
D | regexp_adapter.h | 170 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()
|
D | regexp_adapter_re2.cc | 136 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()
|
D | regexp_adapter_icu.cc | 181 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()
|