Searched defs:phoneText (Results 1 - 2 of 2) sorted by relevance

/packages/services/Mms/src/com/android/mms/service/
H A DPhoneUtils.java39 * @param phoneText The input phone number text
43 String phoneText) {
46 final Phonenumber.PhoneNumber parsed = getParsedNumber(phoneNumberUtil, phoneText, country);
48 return phoneText;
57 String phoneText, String country) {
59 final Phonenumber.PhoneNumber phoneNumber = phoneNumberUtil.parse(phoneText, country);
42 getNationalNumber(TelephonyManager telephonyManager, int subId, String phoneText) argument
56 getParsedNumber(PhoneNumberUtil phoneNumberUtil, String phoneText, String country) argument
/packages/apps/Messaging/src/com/android/messaging/util/
H A DPhoneUtils.java722 private static String getCanonicalFromCache(final String phoneText, String country) { argument
725 return countryMap.get(phoneText);
730 private static void putCanonicalToCache(final String phoneText, String country, argument
734 countryMap.put(phoneText, canonical);
741 * @param phoneText Phone number text as input by user.
745 private static String getValidE164Number(final String phoneText, final String country) { argument
748 final PhoneNumber phoneNumber = phoneNumberUtil.parse(phoneText, country);
754 + LogUtil.sanitizePII(phoneText) + " for country " + country);
762 * @param phoneText The phone number to canonicalize
765 public String getCanonicalBySystemLocale(final String phoneText) { argument
776 getCanonicalBySimLocale(final String phoneText) argument
788 getCanonicalByCountry(final String phoneText, final String country) argument
865 formatForDisplay(final String phoneText) argument
[all...]

Completed in 79 milliseconds