Searched defs:countryIso (Results 1 - 6 of 6) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DCallLogInsertionHelper.java28 public String getGeocodedLocationFor(String number, String countryIso); argument
H A DDefaultCallLogInsertionHelper.java66 String countryIso = getCurrentCountryIso();
67 values.put(Calls.COUNTRY_ISO, countryIso);
70 getGeocodedLocationFor(values.getAsString(Calls.NUMBER), countryIso));
90 private PhoneNumber parsePhoneNumber(String number, String countryIso) { argument
92 return getPhoneNumberUtil().parse(number, countryIso);
106 public String getGeocodedLocationFor(String number, String countryIso) { argument
107 PhoneNumber structuredPhoneNumber = parsePhoneNumber(number, countryIso);
/packages/apps/Dialer/src/com/android/dialer/
H A DPhoneCallDetails.java34 public final String countryIso; field in class:PhoneCallDetails
65 CharSequence formattedNumber, String countryIso, String geocode,
67 this(number, numberPresentation, formattedNumber, countryIso, geocode,
73 CharSequence formattedNumber, String countryIso, String geocode,
80 this.countryIso = countryIso;
64 PhoneCallDetails(CharSequence number, int numberPresentation, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration) argument
72 PhoneCallDetails(CharSequence number, int numberPresentation, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration, CharSequence name, int numberType, CharSequence numberLabel, Uri contactUri, Uri photoUri) argument
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DContactInfoHelper.java63 * @param countryIso the country associated with this number
65 public ContactInfo lookupNumber(String number, String countryIso) { argument
77 sipInfo = queryContactInfoForPhoneNumber(username, countryIso);
83 ContactInfo phoneInfo = queryContactInfoForPhoneNumber(number, countryIso);
102 updatedInfo.formattedNumber = formatPhoneNumber(number, null, countryIso);
214 private ContactInfo queryContactInfoForPhoneNumber(String number, String countryIso) { argument
216 if (!TextUtils.isEmpty(countryIso)) {
219 String numberE164 = PhoneNumberUtils.formatNumberToE164(number, countryIso);
230 info.formattedNumber = formatPhoneNumber(number, null, countryIso);
244 * @param countryIso th
250 formatPhoneNumber(String number, String normalizedNumber, String countryIso) argument
[all...]
H A DCallLogAdapter.java69 public final String countryIso; field in class:CallLogAdapter.NumberWithCountryIso
71 public NumberWithCountryIso(String number, String countryIso) { argument
73 this.countryIso = countryIso;
82 && TextUtils.equals(countryIso, other.countryIso);
88 ^ (countryIso == null ? 0 : countryIso.hashCode());
120 public final String countryIso; field in class:CallLogAdapter.ContactInfoRequest
124 public ContactInfoRequest(String number, String countryIso, ContactInf argument
355 enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, boolean immediate) argument
378 queryContactInfo(String number, String countryIso, ContactInfo callLogInfo) argument
749 updateCallLogContactInfoCache(String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) argument
873 injectContactInfoForTest(String number, String countryIso, ContactInfo contactInfo) argument
892 getBetterNumberFromContacts(String number, String countryIso) argument
[all...]
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DCallLogAdapterTest.java58 public ContactInfo lookupNumber(String number, String countryIso) {
96 assertEquals(TEST_COUNTRY_ISO, request.countryIso);
198 public final String countryIso; field in class:CallLogAdapterTest.TestCallLogAdapter.Request
202 public Request(String number, String countryIso, ContactInfo callLogInfo, argument
205 this.countryIso = countryIso;
219 protected void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, argument
221 requests.add(new Request(number, countryIso, callLogInfo, immediate));

Completed in 110 milliseconds