Home | History | Annotate | Download | only in phonenumbers

Lines Matching refs:StrCat

73   return StrCat("{", lower, ",", upper, "}");
220 // separately since StrCat has a limit of 12 args.
263 non_parens_(StrCat("[^", opening_parens_, closing_parens_, "]")),
265 leading_maybe_matched_bracket_(StrCat(
268 bracket_pairs_(StrCat(
276 punctuation_(StrCat("[", PhoneNumberUtil::kValidPunctuation, "]",
278 digit_sequence_(StrCat("\\p{Nd}", Limit(1, digit_block_limit_))),
279 lead_class_chars_(StrCat(opening_parens_, PhoneNumberUtil::kPlusChars)),
280 lead_class_(StrCat("[", lead_class_chars_, "]")),
281 opening_punctuation_(StrCat("(?:", lead_class_, punctuation_, ")")),
282 optional_extn_pattern_(StrCat(
301 StrCat(leading_maybe_matched_bracket_, non_parens_, "+",
304 StrCat("\\p{Z}", "[^", lead_class_chars_, "\\p{Nd}]*"))),
312 StrCat("(", opening_punctuation_, lead_limit_,