Home
last modified time | relevance | path

Searched refs:normalizedChar (Results 1 – 2 of 2) sorted by relevance

/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DAsYouTypeFormatter.java633 char normalizedChar; in normalizeAndAccrueDigitsAndPlusSign() local
635 normalizedChar = nextChar; in normalizeAndAccrueDigitsAndPlusSign()
639 normalizedChar = Character.forDigit(Character.digit(nextChar, radix), radix); in normalizeAndAccrueDigitsAndPlusSign()
640 accruedInputWithoutFormatting.append(normalizedChar); in normalizeAndAccrueDigitsAndPlusSign()
641 nationalNumber.append(normalizedChar); in normalizeAndAccrueDigitsAndPlusSign()
646 return normalizedChar; in normalizeAndAccrueDigitsAndPlusSign()
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Dasyoutypeformatter.js1046 var normalizedChar;
1048 normalizedChar = nextChar;
1051 normalizedChar = i18n.phonenumbers.PhoneNumberUtil.DIGIT_MAPPINGS[nextChar];
1052 this.accruedInputWithoutFormatting_.append(normalizedChar);
1053 this.nationalNumber_.append(normalizedChar);
1058 return normalizedChar;