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

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_adapter.h128 // Replaces match(es) in 'string_to_process'. If 'global' is true,
134 virtual bool Replace(string* string_to_process,
139 inline bool Replace(string* string_to_process, argument
141 return Replace(string_to_process, false, replacement_string);
144 inline bool GlobalReplace(string* string_to_process, argument
146 return Replace(string_to_process, true, replacement_string);
H A Dregexp_adapter_re2.cc133 virtual bool Replace(string* string_to_process, argument
136 DCHECK(string_to_process);
140 return RE2::GlobalReplace(string_to_process, utf8_regexp_,
143 return RE2::Replace(string_to_process, utf8_regexp_,
H A Dregexp_adapter_icu.cc179 bool Replace(string* string_to_process, argument
182 DCHECK(string_to_process);
186 IcuRegExpInput input(*string_to_process);
218 *string_to_process = replaced_string;

Completed in 140 milliseconds