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
69 CharSequence formattedNumber, String countryIso, String geocode,
71 this(number, numberPresentation, formattedNumber, countryIso, geocode,
77 CharSequence formattedNumber, String countryIso, String geocode,
84 this.countryIso = countryIso;
68 PhoneCallDetails(CharSequence number, int numberPresentation, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration) argument
76 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, int sourceType) 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);
211 private ContactInfo queryContactInfoForPhoneNumber(String number, String countryIso) { argument
213 if (!TextUtils.isEmpty(countryIso)) {
216 String numberE164 = PhoneNumberUtils.formatNumberToE164(number, countryIso);
227 info.formattedNumber = formatPhoneNumber(number, null, countryIso);
241 * @param countryIso th
246 formatPhoneNumber(String number, String normalizedNumber, String countryIso) argument
[all...]
H A DCallLogAdapter.java72 public final String countryIso; field in class:CallLogAdapter.NumberWithCountryIso
74 public NumberWithCountryIso(String number, String countryIso) { argument
76 this.countryIso = countryIso;
85 && TextUtils.equals(countryIso, other.countryIso);
91 ^ (countryIso == null ? 0 : countryIso.hashCode());
123 public final String countryIso; field in class:CallLogAdapter.ContactInfoRequest
127 public ContactInfoRequest(String number, String countryIso, ContactInf argument
360 enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, boolean immediate) argument
383 queryContactInfo(String number, String countryIso, ContactInfo callLogInfo) argument
782 updateCallLogContactInfoCache(String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) argument
913 injectContactInfoForTest(String number, String countryIso, ContactInfo contactInfo) argument
932 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 129 milliseconds