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.java60 String countryIso = getCurrentCountryIso();
61 values.put(Calls.COUNTRY_ISO, countryIso);
64 getGeocodedLocationFor(values.getAsString(Calls.NUMBER), countryIso));
78 private PhoneNumber parsePhoneNumber(String number, String countryIso) { argument
80 return getPhoneNumberUtil().parse(number, countryIso);
94 public String getGeocodedLocationFor(String number, String countryIso) { argument
95 PhoneNumber structuredPhoneNumber = parsePhoneNumber(number, countryIso);
/packages/apps/Dialer/src/com/android/dialer/
H A DPhoneCallDetails.java32 public final String countryIso; field in class:PhoneCallDetails
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;
62 PhoneCallDetails(CharSequence number, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration) argument
69 PhoneCallDetails(CharSequence number, 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.java50 * @param countryIso the country associated with this number
52 public ContactInfo lookupNumber(String number, String countryIso) { argument
64 sipInfo = queryContactInfoForPhoneNumber(username, countryIso);
70 ContactInfo phoneInfo = queryContactInfoForPhoneNumber(number, countryIso);
89 updatedInfo.formattedNumber = formatPhoneNumber(number, null, countryIso);
169 private ContactInfo queryContactInfoForPhoneNumber(String number, String countryIso) { argument
171 if (!TextUtils.isEmpty(countryIso)) {
174 String numberE164 = PhoneNumberUtils.formatNumberToE164(number, countryIso);
185 info.formattedNumber = formatPhoneNumber(number, null, countryIso);
195 * @param countryIso th
201 formatPhoneNumber(String number, String normalizedNumber, String countryIso) argument
[all...]
H A DCallLogAdapter.java64 public final String countryIso; field in class:CallLogAdapter.NumberWithCountryIso
66 public NumberWithCountryIso(String number, String countryIso) { argument
68 this.countryIso = countryIso;
77 && TextUtils.equals(countryIso, other.countryIso);
83 ^ (countryIso == null ? 0 : countryIso.hashCode());
115 public final String countryIso; field in class:CallLogAdapter.ContactInfoRequest
119 public ContactInfoRequest(String number, String countryIso, ContactInf argument
335 enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, boolean immediate) argument
358 queryContactInfo(String number, String countryIso, ContactInfo callLogInfo) argument
637 updateCallLogContactInfoCache(String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) argument
754 injectContactInfoForTest(String number, String countryIso, ContactInfo contactInfo) argument
773 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 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, argument
221 requests.add(new Request(number, countryIso, callLogInfo, immediate));

Completed in 113 milliseconds