HomeSort by relevance Sort by last modified time
    Searched defs:punctuation (Results 1 - 2 of 2) sorted by null

  /external/markdown/markdown/extensions/
headerid.py 71 from string import ascii_lowercase, digits, punctuation namespace
161 elif c not in punctuation:
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 53 * <li>Leading punctuation / plus signs are limited.
54 * <li>Consecutive occurrences of punctuation are limited.
101 * Punctuation that may be at the start of a phone number - brackets and plus signs.
128 /* Limit on the number of consecutive punctuation characters. */
135 /* Limit on the number of blocks separated by punctuation. Uses digitBlockLimit since some
139 /* A punctuation sequence allowing white space. */
140 String punctuation = "[" + PhoneNumberUtil.VALID_PUNCTUATION + "]" + punctuationLimit; typedefs
141 /* A digits block without punctuation. */
149 /* Phone number pattern allowing optional punctuation. */
151 "(?:" + leadClass + punctuation + ")" + leadLimit
    [all...]

Completed in 538 milliseconds