Home
last modified time | relevance | path

Searched refs:countryCode (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DPhoneNumberFormattingTextWatcher.java95 public PhoneNumberFormattingTextWatcher(String countryCode) { in PhoneNumberFormattingTextWatcher() argument
96 if (countryCode == null) throw new IllegalArgumentException(); in PhoneNumberFormattingTextWatcher()
97 mFormatter = PhoneNumberUtil.getInstance().getAsYouTypeFormatter(countryCode); in PhoneNumberFormattingTextWatcher()
DPhoneNumberUtils.java2170 public CountryCallingCodeAndNewIndex(int countryCode, int newIndex) { in CountryCallingCodeAndNewIndex() argument
2171 this.countryCallingCode = countryCode; in CountryCallingCodeAndNewIndex()
/frameworks/base/location/java/android/location/
DAddress.java267 public void setCountryCode(String countryCode) { in setCountryCode() argument
268 mCountryCode = countryCode; in setCountryCode()
/frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
DICU_Delegate.java112 /*package*/ static String getDisplayCountryNative(String countryCode, String locale) { in getDisplayCountryNative() argument
/frameworks/base/wifi/java/android/net/wifi/
DWifiNative.java188 public native static boolean setCountryCodeCommand(String countryCode); in setCountryCodeCommand() argument
DWifiStateMachine.java957 public void setCountryCode(String countryCode, boolean persist) { in setCountryCode() argument
961 countryCode); in setCountryCode() local
963 sendMessage(obtainMessage(CMD_SET_COUNTRY_CODE, countryCode)); in setCountryCode()
1157 String countryCode = Settings.Secure.getString(mContext.getContentResolver(), in setCountryCode() local
1159 if (countryCode != null && !countryCode.isEmpty()) { in setCountryCode()
1160 setCountryCode(countryCode, false); in setCountryCode()
/frameworks/base/services/java/com/android/server/
DWifiService.java788 public void setCountryCode(String countryCode, boolean persist) { in setCountryCode() argument
789 Slog.i(TAG, "WifiService trying to set country code to " + countryCode + in setCountryCode()
792 mWifiStateMachine.setCountryCode(countryCode, persist); in setCountryCode()