Home | History | Annotate | Download | only in service

Lines Matching refs:country

44         final String country = getSimOrDefaultLocaleCountry(telephonyManager, subId);
46 final Phonenumber.PhoneNumber parsed = getParsedNumber(phoneNumberUtil, phoneText, country);
57 String phoneText, String country) {
59 final Phonenumber.PhoneNumber phoneNumber = phoneNumberUtil.parse(phoneText, country);
64 + " for country " + country);
73 // Get the country/region either from the SIM ID or from locale
76 String country = getSimCountry(telephonyManager, subId);
77 if (TextUtils.isEmpty(country)) {
78 country = Locale.getDefault().getCountry();
81 return country;
84 // Get country/region from SIM ID
86 final String country = telephonyManager.getSimCountryIso(subId);
87 if (TextUtils.isEmpty(country)) {
90 return country.toUpperCase();