Home | History | Annotate | Download | only in phonenumbers

Lines Matching defs:accruedInputWithoutFormatting

48   private StringBuilder accruedInputWithoutFormatting = new StringBuilder();
106 // found in accruedInputWithoutFormatting.
270 accruedInputWithoutFormatting.setLength(0);
351 switch (accruedInputWithoutFormatting.length()) {
457 if (accruedInputWithoutFormatting.charAt(accruedInputIndex)
568 * @return true when accruedInputWithoutFormatting begins with the plus sign or valid IDD for
575 Matcher iddMatcher = internationalPrefix.matcher(accruedInputWithoutFormatting);
580 nationalNumber.append(accruedInputWithoutFormatting.substring(startOfCountryCallingCode));
583 accruedInputWithoutFormatting.substring(0, startOfCountryCallingCode));
584 if (accruedInputWithoutFormatting.charAt(0) != PhoneNumberUtil.PLUS_SIGN) {
624 // Accrues digits and the plus sign to accruedInputWithoutFormatting for later use. If nextChar
633 accruedInputWithoutFormatting.append(nextChar);
637 accruedInputWithoutFormatting.append(normalizedChar);
641 positionToRemember = accruedInputWithoutFormatting.length();