OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VALID_PUNCTUATION
(Results
1 - 3
of
3
) sorted by null
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java
75
Pattern.compile("[" + PhoneNumberUtil.
VALID_PUNCTUATION
+ "]*" +
76
"(\\$\\d" + "[" + PhoneNumberUtil.
VALID_PUNCTUATION
+ "]*)+");
PhoneNumberMatcher.java
127
String punctuation = "[" + PhoneNumberUtil.
VALID_PUNCTUATION
+ "]" + punctuationLimit;
PhoneNumberUtil.java
196
static final String
VALID_PUNCTUATION
= "-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F " +
206
private static final Pattern SEPARATOR_PATTERN = Pattern.compile("[" +
VALID_PUNCTUATION
+ "]+");
244
// Note
VALID_PUNCTUATION
starts with a -, so must be the first in the range.
246
"[" + PLUS_CHARS + "]*(?:[" +
VALID_PUNCTUATION
+ "]*" + DIGITS + "){3,}[" +
247
VALID_PUNCTUATION
+ VALID_ALPHA + DIGITS + "]*";
[
all
...]
Completed in 2220 milliseconds