Searched defs:countryCode (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberFormattingTextWatcher.java64 * The formatting is based on the given <code>countryCode</code>.
66 * @param countryCode the ISO 3166-1 two-letter country code that indicates the country/region
71 public PhoneNumberFormattingTextWatcher(String countryCode) { argument
72 if (countryCode == null) throw new IllegalArgumentException();
73 mFormatter = PhoneNumberUtil.getInstance().getAsYouTypeFormatter(countryCode);
H A DPhoneNumberUtils.java2394 public CountryCallingCodeAndNewIndex(int countryCode, int newIndex) { argument
2395 this.countryCallingCode = countryCode;
/frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
H A DICU_Delegate.java112 /*package*/ static String getDisplayCountryNative(String countryCode, String locale) { argument
/frameworks/base/location/java/android/location/
H A DAddress.java267 public void setCountryCode(String countryCode) { argument
268 mCountryCode = countryCode;
453 sb.append(",countryCode=");
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java345 public boolean setCountryCode(String countryCode) { argument
346 return doBooleanCommand("DRIVER COUNTRY " + countryCode);
H A DWifiStateMachine.java1036 * @param countryCode following ISO 3166 format
1039 public void setCountryCode(String countryCode, boolean persist) { argument
1043 countryCode);
1045 sendMessage(obtainMessage(CMD_SET_COUNTRY_CODE, countryCode));
1278 String countryCode = Settings.Secure.getString(mContext.getContentResolver(),
1280 if (countryCode != null && !countryCode.isEmpty()) {
1281 setCountryCode(countryCode, false);
/frameworks/base/services/java/com/android/server/
H A DWifiService.java816 * @param countryCode ISO 3166 country code.
823 public void setCountryCode(String countryCode, boolean persist) { argument
824 Slog.i(TAG, "WifiService trying to set country code to " + countryCode +
827 mWifiStateMachine.setCountryCode(countryCode, persist);

Completed in 2674 milliseconds