Searched refs:mContactInfoHelper (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DContactInfoHelperTest.java46 private ContactInfoHelper mContactInfoHelper; field in class:ContactInfoHelperTest
58 mContactInfoHelper = new ContactInfoHelper(mContext, TEST_COUNTRY_ISO);
62 Assert.assertNull(mContactInfoHelper.lookupContactFromUri(null, false));
69 Assert.assertEquals(ContactInfo.EMPTY, mContactInfoHelper.lookupContactFromUri(
81 ContactInfo contactInfo = mContactInfoHelper.lookupContactFromUri(
95 ContactInfo contactInfo = mContactInfoHelper.lookupContactFromUri(
103 Assert.assertNull(mContactInfoHelper.lookUpDisplayNameAlternative(mContext, null,
110 Assert.assertNull(mContactInfoHelper.lookUpDisplayNameAlternative(mContext,
119 mContactInfoHelper.lookUpDisplayNameAlternative(mContext, TEST_LOOKUP_KEY
H A DCallLogNotificationsHelperTest.java38 private final ContactInfoHelper mContactInfoHelper = mock(ContactInfoHelper.class); field in class:CallLogNotificationsHelperTest
46 null, null, mContactInfoHelper, TEST_COUNTRY_ISO);
117 when(mContactInfoHelper.lookupNumber(anyString(), anyString())).thenReturn(null);
127 when(mContactInfoHelper.lookupNumber(anyString(), anyString()))
/packages/apps/Dialer/src/com/android/dialer/filterednumber/
H A DNumbersAdapter.java43 private ContactInfoHelper mContactInfoHelper; field in class:NumbersAdapter
55 mContactInfoHelper = contactInfoHelper;
69 ContactInfo info = mContactInfoHelper.lookupNumber(number, countryIso);
100 final int contactType = mContactInfoHelper.isBusiness(info.sourceType)
/packages/apps/Dialer/src/com/android/dialer/contactinfo/
H A DContactInfoCache.java134 private ContactInfoHelper mContactInfoHelper; field in class:ContactInfoCache
140 mContactInfoHelper = contactInfoHelper;
193 final ContactInfo info = mContactInfoHelper.lookupNumber(number, countryIso);
222 mContactInfoHelper.updateCallLogContactInfo(number, countryIso, info, callLogInfo);
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogNotificationsHelper.java67 private final ContactInfoHelper mContactInfoHelper; field in class:CallLogNotificationsHelper
76 mContactInfoHelper = contactInfoHelper;
141 ContactInfo cachedContactInfo = mContactInfoHelper.lookupNumber(number, countryIso);
H A DCallLogAdapter.java103 private final ContactInfoHelper mContactInfoHelper; field in class:CallLogAdapter
269 mContactInfoHelper = contactInfoHelper;
278 mContactInfoHelper, mOnContactInfoChangedListener);
562 views.isBusiness = mContactInfoHelper.isBusiness(info.sourceType);
/packages/apps/Dialer/src/com/android/dialer/
H A DCallDetailActivity.java182 final boolean showReportAction = mContactInfoHelper.canReportAsInvalid(
216 private ContactInfoHelper mContactInfoHelper; field in class:CallDetailActivity
251 mContactInfoHelper = new ContactInfoHelper(this, GeoUtil.getCurrentCountryIso(this));
459 final boolean isBusiness = mContactInfoHelper.isBusiness(mDetails.sourceType);

Completed in 165 milliseconds