HomeSort by relevance Sort by last modified time
    Searched defs:countryIso (Results 1 - 9 of 9) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/
PhoneCallDetails.java 32 public final String countryIso;
63 String countryIso, String geocode, int[] callTypes, long date, long duration) {
64 this(number, formattedNumber, countryIso, geocode, callTypes, date, duration, "", 0, "",
70 String countryIso, String geocode, int[] callTypes, long date, long duration,
75 this.countryIso = countryIso;
CallDetailActivity.java 557 String countryIso = callCursor.getString(COUNTRY_ISO_COLUMN_INDEX);
560 if (TextUtils.isEmpty(countryIso)) {
561 countryIso = mDefaultCountryIso;
576 ? mContactInfoHelper.lookupNumber(number, countryIso)
593 return new PhoneCallDetails(number, formattedNumber, countryIso, geocode,
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DefaultCallLogInsertionHelper.java 61 String countryIso = getCurrentCountryIso();
62 values.put(Calls.COUNTRY_ISO, countryIso);
65 getGeocodedLocationFor(values.getAsString(Calls.NUMBER), countryIso));
79 private PhoneNumber parsePhoneNumber(String number, String countryIso) {
81 return getPhoneNumberUtil().parse(number, countryIso);
95 public String getGeocodedLocationFor(String number, String countryIso) {
96 PhoneNumber structuredPhoneNumber = parsePhoneNumber(number, countryIso);
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 148 String countryIso = null;
152 countryIso = mTelephonyManager.getNetworkCountryIso();
153 if (!TextUtils.isEmpty(countryIso)) {
154 return new Country(countryIso, Country.COUNTRY_SOURCE_NETWORK);
171 String countryIso = null;
172 countryIso = mTelephonyManager.getSimCountryIso();
173 if (!TextUtils.isEmpty(countryIso)) {
174 return new Country(countryIso, Country.COUNTRY_SOURCE_SIM);
244 + ", countryISO: " + detectedCountry.getCountryIso() + ")")
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogAdapterTest.java 58 public ContactInfo lookupNumber(String number, String countryIso) {
96 assertEquals(TEST_COUNTRY_ISO, request.countryIso);
198 public final String countryIso;
202 public Request(String number, String countryIso, ContactInfo callLogInfo,
205 this.countryIso = countryIso;
219 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo,
221 requests.add(new Request(number, countryIso, callLogInfo, immediate));
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 518 String countryIso = getCurrentCountryIso(context, locale);
522 + "' for countryIso '" + countryIso + "'...");
523 pn = util.parse(number, countryIso);
543 String countryIso;
547 countryIso = detector.detectCountry().getCountryIso();
549 countryIso = locale.getCountry();
550 Log.w(TAG, "No CountryDetector; falling back to countryIso based on locale: "
551 + countryIso);
553 return countryIso;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogFragment.java 342 String countryIso = cursor.getString(CallLogQuery.COUNTRY_ISO);
343 number = mAdapter.getBetterNumberFromContacts(number, countryIso);
CallLogAdapter.java 65 public final String countryIso;
67 public NumberWithCountryIso(String number, String countryIso) {
69 this.countryIso = countryIso;
78 && TextUtils.equals(countryIso, other.countryIso);
84 ^ (countryIso == null ? 0 : countryIso.hashCode());
115 public final String countryIso;
119 public ContactInfoRequest(String number, String countryIso, ContactInfo callLogInfo)
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java     [all...]

Completed in 127 milliseconds