Searched refs:countryCode (Results 1 - 7 of 7) sorted by path

/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/services/java/com/android/server/
H A DWifiService.java876 * @param countryCode ISO 3166 country code.
883 public void setCountryCode(String countryCode, boolean persist) { argument
884 Slog.i(TAG, "WifiService trying to set country code to " + countryCode +
887 mWifiStateMachine.setCountryCode(countryCode, persist);
/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/wifi/java/android/net/wifi/
H A DWifiNative.java362 public boolean setCountryCode(String countryCode) { argument
363 return doBooleanCommand("DRIVER COUNTRY " + countryCode);
H A DWifiStateMachine.java1069 * @param countryCode following ISO 3166 format
1072 public void setCountryCode(String countryCode, boolean persist) { argument
1076 countryCode);
1078 sendMessage(obtainMessage(CMD_SET_COUNTRY_CODE, countryCode));
1332 String countryCode = Settings.Global.getString(mContext.getContentResolver(),
1334 if (countryCode != null && !countryCode.isEmpty()) {
1335 setCountryCode(countryCode, false);

Completed in 6699 milliseconds