Lines Matching refs:StrCat
175 formatted_number->insert(0, StrCat(kPlusSign, country_calling_code));
178 formatted_number->insert(0, StrCat(kPlusSign, country_calling_code, " "));
181 formatted_number->insert(0, StrCat(kRfc3966Prefix, kPlusSign,
215 return StrCat("([", kDigits, "]{1,", max_length, "})");
254 string rfc_extn = StrCat(kRfc3966ExtnPrefix,
256 string explicit_extn = StrCat(
261 string ambiguous_extn = StrCat(
266 string american_style_extn_with_suffix = StrCat(
279 string extension_pattern = StrCat(
295 string auto_dialling_extn = StrCat(
300 string only_commas_extn = StrCat(
310 return StrCat(extension_pattern, "|",
782 StrCat(kDigits, "{", PhoneNumberUtil::kMinLengthForNsn, "}|[",
789 StrCat("(", kDigits, "|", kRfc3966VisualSeparator, ")")),
790 alphanum_(StrCat(kValidAlphaInclUppercase, kDigits)),
792 StrCat("[", alphanum_, "]+((\\-)*[", alphanum_, "])*")),
793 rfc3966_toplabel_(StrCat("[", kValidAlphaInclUppercase,
808 regexp_factory_->CreateRegExp(StrCat("[", kDigits, "]*"))),
810 regexp_factory_->CreateRegExp(StrCat("([", kDigits, "])"))),
814 StrCat("[", PhoneNumberUtil::kPlusChars, kDigits, "]"))),
821 StrCat("[", PhoneNumberUtil::kValidPunctuation, "]+"))),
825 StrCat("(?i)(?:", extn_patterns_for_parsing_, ")$"))),
827 StrCat("(?i)", valid_phone_number_,
830 StrCat("(?i)(?:.*?[", kValidAlpha, "]){3}"))),
840 StrCat("[", PhoneNumberUtil::kPlusChars, "]+"))),
842 StrCat("^\\", kPlusSign, rfc3966_phone_digit_, "*", kDigits,
844 rfc3966_domainname_pattern_(regexp_factory_->CreateRegExp(StrCat(
1046 StrCat("[", kValidPunctuation, "]*", "\\$1",
1406 formatted_number->insert(0, StrCat(country_code, " "));
1455 0, StrCat(international_prefix_for_formatting, " ", country_code, " "));
2075 ErrorType success = Parse(StrCat(kPlusSign,
2109 ErrorType success = Parse(StrCat(kPlusSign,
2716 StrCat("[^", kDigits, "]"));