Home
last modified time | relevance | path

Searched refs:ContactInfoHelper (Results 1 – 11 of 11) sorted by relevance

/aosp12/packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
H A DViewNumbersToImportAdapter.java26 import com.android.dialer.phonenumbercache.ContactInfoHelper;
34 ContactInfoHelper contactInfoHelper, in ViewNumbersToImportAdapter()
44 new ContactInfoHelper(context, GeoUtil.getCurrentCountryIso(context)), in newViewNumbersToImportAdapter()
H A DBlockedNumbersAdapter.java29 import com.android.dialer.phonenumbercache.ContactInfoHelper;
38 ContactInfoHelper contactInfoHelper, in BlockedNumbersAdapter()
48 new ContactInfoHelper(context, GeoUtil.getCurrentCountryIso(context)), in newBlockedNumbersAdapter()
H A DNumbersAdapter.java34 import com.android.dialer.phonenumbercache.ContactInfoHelper;
43 private final ContactInfoHelper contactInfoHelper;
50 ContactInfoHelper contactInfoHelper, in NumbersAdapter()
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
H A DContactPhotoLoader.java34 import com.android.dialer.phonenumbercache.ContactInfoHelper;
117 ContactInfoHelper helper = in createLetterTileDrawable()
118 new ContactInfoHelper(context, GeoUtil.getCurrentCountryIso(context)); in createLetterTileDrawable()
H A DContactInfoCache.java29 import com.android.dialer.phonenumbercache.ContactInfoHelper;
55 private final ContactInfoHelper contactInfoHelper;
91 @NonNull ContactInfoHelper contactInfoHelper, in ContactInfoCache()
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogNotificationsQueryHelper.java44 import com.android.dialer.phonenumbercache.ContactInfoHelper;
61 private final ContactInfoHelper contactInfoHelper;
67 ContactInfoHelper contactInfoHelper, in CallLogNotificationsQueryHelper()
82 new ContactInfoHelper(context, countryIso), in getInstance()
H A DCallLogFragment.java72 import com.android.dialer.phonenumbercache.ContactInfoHelper;
338 new ContactInfoHelper(getActivity(), currentCountryIso), in setupData()
H A DCallLogAdapter.java92 import com.android.dialer.phonenumbercache.ContactInfoHelper;
952 final ContactInfo cachedContactInfo = ContactInfoHelper.getContactInfo(cursor); in createPhoneCallDetails()
/aosp12/packages/apps/Dialer/java/com/android/incallui/
H A DCallerInfoAsyncQuery.java38 import com.android.dialer.phonenumbercache.ContactInfoHelper;
127 Uri uri = ContactInfoHelper.getContactInfoLookupUri(info.phoneNumber); in startDefaultDirectoryQuery()
207 Uri uri = ContactInfoHelper.getContactInfoLookupUri(info.phoneNumber, directoryId); in startOtherDirectoriesQuery()
H A DCallerInfo.java36 import com.android.dialer.phonenumbercache.ContactInfoHelper;
307 ContactInfoHelper.lookUpDisplayNameAlternative( in getCallerInfo()
/aosp12/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
H A DContactInfoHelper.java52 public class ContactInfoHelper { class
54 private static final String TAG = ContactInfoHelper.class.getSimpleName();
60 public ContactInfoHelper(Context context, String currentCountryIso) { in ContactInfoHelper() method in ContactInfoHelper