OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numberPattern
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/libcore/icu/
LocaleData.java
107
public String
numberPattern
;
191
if (localeData.
numberPattern
!= null) {
198
localeData.integerPattern = localeData.
numberPattern
.replaceAll("\\.[#,]*", "");
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java
216
String
numberPattern
= format.getPattern();
218
// The formatter doesn't format numbers when
numberPattern
contains "|", e.g.
220
if (
numberPattern
.indexOf('|') != -1) {
225
numberPattern
= CHARACTER_CLASS_PATTERN.matcher(
numberPattern
).replaceAll("\\\\d");
228
numberPattern
= STANDALONE_DIGIT_PATTERN.matcher(
numberPattern
).replaceAll("\\\\d");
230
String tempTemplate = getFormattingTemplate(
numberPattern
, format.getFormat());
240
private String getFormattingTemplate(String
numberPattern
, String numberFormat) {
242
//
numberPattern
by applying the pattern to the longestPhoneNumber string
[
all
...]
Completed in 52 milliseconds