Home | History | Annotate | Download | only in calllog

Lines Matching refs:countryIso

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());
116 public final String countryIso;
120 public ContactInfoRequest(String number, String countryIso, ContactInfo callLogInfo) {
122 this.countryIso = countryIso;
135 if (!TextUtils.equals(countryIso, other.countryIso)) return false;
146 result = prime * result + ((countryIso == null) ? 0 : countryIso.hashCode());
336 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo,
338 ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo);
359 private boolean queryContactInfo(String number, String countryIso, ContactInfo callLogInfo) {
360 final ContactInfo info = mContactInfoHelper.lookupNumber(number, countryIso);
369 NumberWithCountryIso numberCountryIso = new NumberWithCountryIso(number, countryIso);
378 updateCallLogContactInfoCache(number, countryIso, info, callLogInfo);
415 needRedraw |= queryContactInfo(req.number, req.countryIso, req.callLogInfo);
528 final String countryIso = c.getString(CallLogQuery.COUNTRY_ISO);
551 NumberWithCountryIso numberCountryIso = new NumberWithCountryIso(number, countryIso);
566 enqueueRequest(number, countryIso, cachedContactInfo, true);
572 enqueueRequest(number, countryIso, cachedContactInfo, false);
578 enqueueRequest(number, countryIso, cachedContactInfo, false);
597 details = new PhoneCallDetails(number, formattedNumber, countryIso, geocode,
601 details = new PhoneCallDetails(number, formattedNumber, countryIso, geocode,
638 private void updateCallLogContactInfoCache(String number, String countryIso,
693 if (countryIso == null) {
700 new String[]{ number, countryIso });
755 void injectContactInfoForTest(String number, String countryIso, ContactInfo contactInfo) {
756 NumberWithCountryIso numberCountryIso = new NumberWithCountryIso(number, countryIso);
774 public String getBetterNumberFromContacts(String number, String countryIso) {
777 NumberWithCountryIso numberCountryIso = new NumberWithCountryIso(number, countryIso);