HomeSort by relevance Sort by last modified time
    Searched refs:PhoneNumberFormat (Results 1 - 9 of 9) sorted by null

  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
PhoneNumberTestService.java 28 import com.android.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
83 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.E164);
84 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.INTERNATIONAL);
85 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.NATIONAL);
86 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.RFC3966);
95 PhoneNumberFormat format) {
  /packages/apps/Messaging/src/android/support/v7/mms/
PhoneNumberHelper.java 45 .format(phoneNumber, PhoneNumberUtil.PhoneNumberFormat.NATIONAL)
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
PhoneNumberUtilTest.java 19 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
409 assertEquals("650 253 0000", phoneUtil.format(US_NUMBER, PhoneNumberFormat.NATIONAL));
410 assertEquals("+1 650 253 0000", phoneUtil.format(US_NUMBER, PhoneNumberFormat.INTERNATIONAL));
412 assertEquals("800 253 0000", phoneUtil.format(US_TOLLFREE, PhoneNumberFormat.NATIONAL));
413 assertEquals("+1 800 253 0000", phoneUtil.format(US_TOLLFREE, PhoneNumberFormat.INTERNATIONAL));
415 assertEquals("900 253 0000", phoneUtil.format(US_PREMIUM, PhoneNumberFormat.NATIONAL));
416 assertEquals("+1 900 253 0000", phoneUtil.format(US_PREMIUM, PhoneNumberFormat.INTERNATIONAL));
417 assertEquals("tel:+1-900-253-0000", phoneUtil.format(US_PREMIUM, PhoneNumberFormat.RFC3966));
421 phoneUtil.format(US_SPOOF_WITH_RAW_INPUT, PhoneNumberFormat.NATIONAL));
422 assertEquals("0", phoneUtil.format(US_SPOOF, PhoneNumberFormat.NATIONAL))
    [all...]
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberUtil.java 376 public enum PhoneNumberFormat {
    [all...]
PhoneNumberMatcher.java 21 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
556 String rfc3966Format = util.format(number, PhoneNumberFormat.RFC3966);
570 formattingPattern, PhoneNumberFormat.RFC3966).split("-");
    [all...]
  /external/libphonenumber/demo/src/com/google/phonenumbers/
PhoneNumberParserServlet.java 26 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
143 ? phoneUtil.format(number, PhoneNumberFormat.INTERNATIONAL)
221 isNumberValid ? phoneUtil.format(number, PhoneNumberFormat.E164) : "invalid",
225 appendLine("National format", phoneUtil.format(number, PhoneNumberFormat.NATIONAL), output);
228 isNumberValid ? phoneUtil.format(number, PhoneNumberFormat.INTERNATIONAL) : "invalid",
  /packages/services/Mms/src/com/android/mms/service/
PhoneUtils.java 51 .format(parsed, PhoneNumberUtil.PhoneNumberFormat.NATIONAL)
  /packages/apps/Messaging/src/com/android/messaging/util/
PhoneUtils.java 44 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
750 return phoneNumberUtil.format(phoneNumber, PhoneNumberFormat.E164);
846 .format(phoneNumber, PhoneNumberFormat.NATIONAL)
876 final PhoneNumberFormat phoneNumberFormat =
878 PhoneNumberFormat.NATIONAL : PhoneNumberFormat.INTERNATIONAL;
879 return phoneNumberUtil.format(parsedNumber, phoneNumberFormat);
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 21 import com.android.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
    [all...]

Completed in 448 milliseconds