Lines Matching refs:match
72 // More specifically, the number failed to match the regular expression
833 * Helper initialiser method to create the regular-expression pattern to match
978 * group does not match correctly. Therefore, we use \d, so that the first
2536 // overridden the pattern to match anything, but that is not the case in the
3092 // avoid checking the validation pattern if they don't match. If they are
3093 // absent, this means they match the general description, which we have
3161 // number does not match that of the region code.
3260 * Returns a list with the region codes that match the specific country calling
3392 // Number is too short, or doesn't match the basic phone number pattern.
3492 // possible length (-1) which is guaranteed not to match the length of any
3774 * the country calling code supplied after this does not match that of any known
3804 // Set the default prefix to be something that will never match.
3906 var matchEnd = numberStr.match(iddPattern)[0].length;
3908 var matchedGroups = numberStr.substring(matchEnd).match(
4085 numberStr.match(i18n.phonenumbers.PhoneNumberUtil.EXTN_PATTERN_);
4448 // Does phone-context value match pattern of global-number-digits or
4615 var match = this.isNumberMatch(firstNumber, secondNumberIn);
4616 if (match ==
4620 return match;
4677 // This is not a match.
4755 * @param {!RegExp|string} regex the regular expression to match against.
4763 str.match('^(?:' + regex + ')$') : str.match(regex);
4775 * @param {!RegExp|string} regex the regular expression to match against.
4784 str.match('^(?:' + regex + ')') : str.match(regex);