Searched defs:utf8_regexp (Results 1 - 2 of 2) sorted by last modified time

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_adapter_icu.cc105 explicit IcuRegExp(const string& utf8_regexp) { argument
109 Utf8StringToUnicodeString(utf8_regexp), 0, parse_error, status));
112 LOG(ERROR) << "Error compiling regular expression: " << utf8_regexp;
232 RegExp* ICURegExpFactory::CreateRegExp(const string& utf8_regexp) const {
233 return new IcuRegExp(utf8_regexp);
H A Dregexp_adapter_re2.cc98 explicit RE2RegExp(const string& utf8_regexp) argument
99 : utf8_regexp_(utf8_regexp) {}
156 RegExp* RE2RegExpFactory::CreateRegExp(const string& utf8_regexp) const {
157 return new RE2RegExp(utf8_regexp);

Completed in 143 milliseconds