/packages/apps/Contacts/tests/src/com/android/contacts/tests/ |
D | PhoneNumberTestService.java | 60 final String country = intent.getStringExtra(EXTRA_COUNTRY_CODE); in onHandleIntent() local 64 Log.i(TAG, "Input country code: " + country); in onHandleIntent() 69 if (country != null) countries.add(country); in onHandleIntent() 80 private void dump(String number, String country) { in dump() argument 81 Log.i(TAG, "Result for: " + number + " / " +country); in dump() 82 dump_PhoneNumberUtils_formatNumberToE164(number, country); in dump() 83 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.E164); in dump() 84 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.INTERNATIONAL); in dump() 85 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.NATIONAL); in dump() 86 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.RFC3966); in dump() [all …]
|
/packages/services/Mms/src/com/android/mms/service/ |
D | PhoneUtils.java | 44 final String country = getSimOrDefaultLocaleCountry(telephonyManager, subId); in getNationalNumber() local 46 final Phonenumber.PhoneNumber parsed = getParsedNumber(phoneNumberUtil, phoneText, country); in getNationalNumber() 57 String phoneText, String country) { in getParsedNumber() argument 59 final Phonenumber.PhoneNumber phoneNumber = phoneNumberUtil.parse(phoneText, country); in getParsedNumber() 64 + " for country " + country); in getParsedNumber() 76 String country = getSimCountry(telephonyManager, subId); in getSimOrDefaultLocaleCountry() local 77 if (TextUtils.isEmpty(country)) { in getSimOrDefaultLocaleCountry() 78 country = Locale.getDefault().getCountry(); in getSimOrDefaultLocaleCountry() 81 return country; in getSimOrDefaultLocaleCountry() 86 final String country = telephonyManager.getSimCountryIso(subId); in getSimCountry() local [all …]
|
D | MmsHttpClient.java | 326 final String country = locale.getCountry(); in addLocaleToHttpAcceptLanguage() local 327 if (country != null) { in addLocaleToHttpAcceptLanguage() 329 builder.append(country); in addLocaleToHttpAcceptLanguage()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | PhoneUtils.java | 270 final String country = mTelephonyManager.getSimCountryIso(); in getSimCountry() local 271 if (TextUtils.isEmpty(country)) { in getSimCountry() 274 return country.toUpperCase(); in getSimCountry() 422 final String country = subInfo.getCountryIso(); in getSimCountry() local 423 if (TextUtils.isEmpty(country)) { in getSimCountry() 426 return country.toUpperCase(); in getSimCountry() 688 final String country = Locale.getDefault().getCountry(); in getLocaleCountry() local 689 if (TextUtils.isEmpty(country)) { in getLocaleCountry() 692 return country.toUpperCase(); in getLocaleCountry() 701 String country = getSimCountry(); in getSimOrDefaultLocaleCountry() local [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
D | GoogleSearch.java | 78 String country = locale.getCountry(); in getLanguage() local 80 if (!TextUtils.isEmpty(country) && useLangCountryHl(language, country)) { in getLanguage() 82 hl.append(country); in getLanguage() 85 if (DBG) Log.d(TAG, "language " + language + ", country " + country + " -> hl=" + hl); in getLanguage() 90 private static boolean useLangCountryHl(String language, String country) { in useLangCountryHl() argument 93 return "GB".equals(country); in useLangCountryHl() 95 return "CN".equals(country) || "TW".equals(country); in useLangCountryHl() 97 return "BR".equals(country) || "PT".equals(country); in useLangCountryHl()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | CountryMonitor.java | 50 Country country = null; in getCountryIso() local 51 if (countryDetector != null) country = countryDetector.detectCountry(); in getCountryIso() 53 if (country == null) { in getCountryIso() 58 mCurrentCountryIso = country.getCountryIso(); in getCountryIso() 60 public void onCountryDetected(Country country) { in getCountryIso() 61 mCurrentCountryIso = country.getCountryIso(); in getCountryIso()
|
D | PostalSplitter.java | 39 public String country; field in PostalSplitter.Postal 48 country = values.getAsString(StructuredPostal.COUNTRY); in fromValues() 58 values.put(StructuredPostal.COUNTRY, country); in toValues() 87 postal.region, postal.postcode, postal.country in join() 106 final boolean hasCountry = !TextUtils.isEmpty(postal.country); in joinJaJp() 120 builder.append(postal.country); in joinJaJp() 172 final boolean hasCountry = !TextUtils.isEmpty(postal.country); in joinEnUs() 220 builder.append(postal.country); in joinEnUs()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/location/ |
D | UpdateCountryService.java | 47 final String country = getCountryFromLocation(getApplicationContext(), location); in onHandleIntent() local 49 if (country == null) { in onHandleIntent() 59 editor.putString(CountryDetector.KEY_PREFERENCE_CURRENT_COUNTRY, country); in onHandleIntent() 71 String country = null; in getCountryFromLocation() local 76 country = addresses.get(0).getCountryCode(); in getCountryFromLocation() 81 return country; in getCountryFromLocation()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | PostalSplitterTest.java | 99 String neighborhood, String city, String region, String postcode, String country) { in assertSplitPostal() argument 108 assertEquals(country, postal.country); in assertSplitPostal() 112 String neighborhood, String city, String region, String postcode, String country) { in assertJoinedPostal() argument 120 postal.country = country; in assertJoinedPostal()
|
D | PostalSplitterForJapaneseTest.java | 115 String neighborhood, String city, String region, String postcode, String country) { in assertSplitPostal() argument 124 assertEquals(country, postal.country); in assertSplitPostal() 128 String neighborhood, String city, String region, String postcode, String country) { in assertJoinedPostal() argument 136 postal.country = country; in assertJoinedPostal()
|
/packages/apps/Messaging/src/android/support/v7/mms/ |
D | MmsHttpClient.java | 294 final String country = locale.getCountry(); in addLocaleToHttpAcceptLanguage() local 295 if (country != null) { in addLocaleToHttpAcceptLanguage() 297 builder.append(country); in addLocaleToHttpAcceptLanguage() 414 String country = null; in getSimOrLocaleCountry() local 420 country = info.getCountryIso(); in getSimOrLocaleCountry() 423 country = mTelephonyManager.getSimCountryIso(); in getSimOrLocaleCountry() 425 if (!TextUtils.isEmpty(country)) { in getSimOrLocaleCountry() 426 return country.toUpperCase(); in getSimOrLocaleCountry()
|
D | PhoneNumberHelper.java | 38 static String getNumberNoCountryCode(final String number, final String country) { in getNumberNoCountryCode() argument 42 final Phonenumber.PhoneNumber phoneNumber = phoneNumberUtil.parse(number, country); in getNumberNoCountryCode()
|
/packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/ |
D | Utils.java | 41 final Country country = detector.detectCountry(); in getCurrentCountryIso() local 42 if (country != null) { in getCurrentCountryIso() 43 return country.getCountryIso(); in getCurrentCountryIso()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | CallLogManager.java | 417 private String getCountryIsoFromCountry(Country country) { in getCountryIsoFromCountry() argument 418 if(country == null) { in getCountryIsoFromCountry() 424 return country.getCountryIso(); in getCountryIsoFromCountry() 438 Country country = null; in getCountryIso() local 440 country = countryDetector.detectCountry(); in getCountryIso() 454 mCurrentCountryIso = getCountryIsoFromCountry(country); in getCountryIso()
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
D | ReverseGeocoder.java | 358 String country = readUTF(dis); in lookupAddress() local 362 if (country == null) { in lookupAddress() 365 locale = new Locale(language, country); in lookupAddress() 367 locale = new Locale(language, country, variant); in lookupAddress()
|
/packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/ |
D | RatingSystemsFragment.java | 102 for (String country : countries) { in getItemList() 103 builder.append(country); in getItemList()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | VCardResourceEntry.java | 315 final String country = postalData.getCountry(); 316 if (!TextUtils.isEmpty(country)) { 317 sb.append(country);
|
/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
D | SmartDialPrefix.java | 561 public static boolean isCountryNanp(String country) { in isCountryNanp() argument 562 if (TextUtils.isEmpty(country)) { in isCountryNanp() 568 return sNanpCountries.contains(country.toUpperCase()); in isCountryNanp()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | pointer.md | 164 void SetLocation(Value& location, const char* country, const char* addresses[2]) { 167 SetValueByPointer(location, "/country", country, a);
|
/packages/apps/TV/src/com/android/tv/parental/ |
D | ContentRatingSystem.java | 202 public void addCountry(String country) { in addCountry() argument 206 mCountries.add(new Locale("", country).getCountry()); in addCountry()
|
D | ContentRatingsParser.java | 189 for (String country : parser.getAttributeValue(i).split("\\s*,\\s*")) { in parseRatingSystemDefinition() 190 builder.addCountry(country); in parseRatingSystemDefinition()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | sl_wordlist.combined.gz | 1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ... |
D | en_US_wordlist.combined.gz |
|
D | nb_wordlist.combined.gz | 1dictionary=main:nb,locale=nb,description=Norsk bokmål,date=1393228136 ... |
/packages/services/Car/bluetooth/bt-map-service/ |
D | bt_hci_startup_issues.txt | 43841 …ger: setTelephonyProperty: success phoneId=0 property=gsm.sim.operator.iso-country value: propVal= 43939 …Manager: setTelephonyProperty: success phoneId=0 property=gsm.operator.iso-country value: propVal= 69524 [gsm.operator.iso-country]: [] 69528 [gsm.sim.operator.iso-country]: []
|