Searched refs:string_to_process (Results 1 - 3 of 3) sorted by relevance
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | regexp_adapter.h | 164 // Replaces match(es) in 'string_to_process'. If 'global' is true, 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()
|
H A 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()
|
H A D | regexp_adapter_icu.cc | 189 bool Replace(string* string_to_process, in Replace() argument 192 DCHECK(string_to_process); in Replace() 196 IcuRegExpInput input(*string_to_process); in Replace() 228 *string_to_process = replaced_string; in Replace()
|
Completed in 3 milliseconds