Home | History | Annotate | Download | only in util

Lines Matching refs:Pattern

20 import java.util.regex.Pattern;
30 * This pattern is auto-generated by frameworks/ex/common/tools/make-iana-tld-pattern.py
66 * Regular expression pattern to match all IANA top-level domains.
70 public static final Pattern TOP_LEVEL_DOMAIN =
71 Pattern.compile(TOP_LEVEL_DOMAIN_STR);
77 * This pattern is auto-generated by frameworks/ex/common/tools/make-iana-tld-pattern.py
116 * This pattern is auto-generated by frameworks/ex/common/tools/make-iana-tld-pattern.py
246 public static final Pattern IP_ADDRESS
247 = Pattern.compile(
301 public static final Pattern DOMAIN_NAME
302 = Pattern.compile("(" + HOST_NAME + "|" + IP_ADDRESS + ")");
320 * Regular expression pattern to match most part of RFC 3987
323 public static final Pattern WEB_URL = Pattern.compile("("
349 private static final Pattern STRICT_DOMAIN_NAME
350 = Pattern.compile("(?:" + STRICT_HOST_NAME + "|" + IP_ADDRESS + ")");
389 * Regular expression pattern to match IRIs. If a string starts with http(s):// the expression
395 public static final Pattern AUTOLINK_WEB_URL = Pattern.compile(
419 * Regular expression pattern to match email addresses. It excludes double quoted local parts
423 public static final Pattern AUTOLINK_EMAIL_ADDRESS = Pattern.compile("(" + WORD_BOUNDARY +
428 public static final Pattern EMAIL_ADDRESS
429 = Pattern.compile(
440 * This pattern is intended for searching for things that look like they
445 * <p> The pattern matches the following:
453 public static final Pattern PHONE
454 = Pattern.compile( // sdd = space, dot, or dash