Searched refs:countryCode (Results 1 - 16 of 16) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsNumberUtils.java109 public int countryCode; field in class:SmsNumberUtils.NumberEntry
200 int countryCode = numberEntry.countryCode;
203 && networkPortionNumber.length() >= 11 && countryCode != NANP_CC) {
380 int countryCode = -1;
388 if ((countryCode = getCountryCode(context, numberCountryAreaLocal)) > 0) {
389 numberEntry.countryCode = countryCode;
392 } else if ((countryCode = getCountryCode(context, numberNoNBPCD)) > 0) {
393 numberEntry.countryCode
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiCountryCode.java111 * @param countryCode The country code intended to set.
116 public synchronized boolean setCountryCode(String countryCode) { argument
117 if (DBG) Log.d(TAG, "Receive set country code request: " + countryCode);
119 if (TextUtils.isEmpty(countryCode)) {
125 mTelephonyCountryCode = countryCode.toUpperCase();
H A DSoftApManager.java117 String countryCode,
125 mCountryCode = countryCode;
113 SoftApManager(@onNull Context context, @NonNull Looper looper, @NonNull FrameworkFacade framework, @NonNull WifiNative wifiNative, String countryCode, @NonNull WifiManager.SoftApCallback callback, @NonNull WifiApConfigStore wifiApConfigStore, @NonNull SoftApModeConfiguration apConfig, @NonNull WifiMetrics wifiMetrics) argument
H A DWifiNative.java1492 * @param countryCode 2 byte ASCII string. For ex: US, CA.
1495 public boolean setCountryCode(@NonNull String ifaceName, String countryCode) { argument
1496 return mSupplicantStaIfaceHal.setCountryCode(ifaceName, countryCode);
2295 * @param countryCode - two-letter country code (as ISO 3166)
2298 public boolean setCountryCodeHal(@NonNull String ifaceName, String countryCode) { argument
2299 return mWifiVendorHal.setCountryCodeHal(ifaceName, countryCode);
H A DWifiVendorHal.java1814 * @param countryCode - two-letter country code (as ISO 3166)
1817 public boolean setCountryCodeHal(@NonNull String ifaceName, String countryCode) { argument
1818 if (countryCode == null) return boolResult(false);
1819 if (countryCode.length() != 2) return boolResult(false);
1822 code = NativeUtil.stringToByteArray(countryCode);
H A DWifiServiceImpl.java2154 * @param countryCode ISO 3166 country code.
2158 public void setCountryCode(String countryCode) { argument
2159 Slog.i(TAG, "WifiService trying to set country code to " + countryCode);
2163 mCountryCode.setCountryCode(countryCode);
H A DWifiStateMachine.java768 BackupManagerProxy backupManagerProxy, WifiCountryCode countryCode,
817 mCountryCode = countryCode;
766 WifiStateMachine(Context context, FrameworkFacade facade, Looper looper, UserManager userManager, WifiInjector wifiInjector, BackupManagerProxy backupManagerProxy, WifiCountryCode countryCode, WifiNative wifiNative, WrongPasswordNotifier wrongPasswordNotifier, SarManager sarManager) argument
/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
69 public PhoneNumberFormattingTextWatcher(String countryCode) { argument
70 if (countryCode == null) throw new IllegalArgumentException();
71 mFormatter = PhoneNumberUtil.getInstance().getAsYouTypeFormatter(countryCode);
H A DPhoneNumberUtils.java3031 public CountryCallingCodeAndNewIndex(int countryCode, int newIndex) { argument
3032 this.countryCallingCode = countryCode;
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneData.java386 final String countryCode = fields[0];
399 if (countryCode == null && !timeZoneId.startsWith("Etc/GMT")) {
406 String country = mCountryCodeToNameMap.get(countryCode);
408 country = getCountryNames(lang, countryCode);
409 mCountryCodeToNameMap.put(countryCode, country);
482 private String getCountryNames(String lang, String countryCode) { argument
485 if (PALESTINE_COUNTRY_CODE.equalsIgnoreCase(countryCode)) {
488 countryDisplayName = new Locale(lang, countryCode).getDisplayCountry(defaultLocale);
491 if (!countryCode.equals(countryDisplayName)) {
506 if (mBackupCountryCodes[i].equals(countryCode)) {
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DApConfigUtil.java110 * @param countryCode country code
116 String countryCode,
128 && countryCode == null) {
115 updateApChannelConfig(WifiNative wifiNative, String countryCode, ArrayList<Integer> allowed2GChannels, WifiConfiguration config) argument
/frameworks/layoutlib/bridge/src/libcore/icu/
H A DICU_Delegate.java134 /*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/core/java/android/text/style/
H A DTtsSpan.java1302 * @param countryCode The country code can be a series of digits
1306 public TelephoneBuilder setCountryCode(String countryCode) { argument
1307 return setStringArgument(TtsSpan.ARG_COUNTRY_CODE, countryCode);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccProfile.java595 String countryCode = operator.substring(0, 3);
596 if (countryCode != null) {
598 MccTable.countryCodeForMcc(Integer.parseInt(countryCode)));
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1078 milliseconds