Home
last modified time | relevance | path

Searched refs:cequintCallerIdContact (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/phonelookup/cequint/
DCequintPhoneLookup.java153 private static CequintInfo buildCequintInfo(CequintCallerIdContact cequintCallerIdContact) { in buildCequintInfo() argument
157 if (!TextUtils.isEmpty(cequintCallerIdContact.name())) { in buildCequintInfo()
158 cequintInfoBuilder.setName(cequintCallerIdContact.name()); in buildCequintInfo()
160 if (!TextUtils.isEmpty(cequintCallerIdContact.geolocation())) { in buildCequintInfo()
161 cequintInfoBuilder.setGeolocation(cequintCallerIdContact.geolocation()); in buildCequintInfo()
163 if (!TextUtils.isEmpty(cequintCallerIdContact.photoUri())) { in buildCequintInfo()
164 cequintInfoBuilder.setPhotoUri(cequintCallerIdContact.photoUri()); in buildCequintInfo()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java623 CequintCallerIdContact cequintCallerIdContact = in updateFromCequintCallerId() local
625 if (cequintCallerIdContact == null) { in updateFromCequintCallerId()
628 if (TextUtils.isEmpty(info.name) && !TextUtils.isEmpty(cequintCallerIdContact.name())) { in updateFromCequintCallerId()
629 info.name = cequintCallerIdContact.name(); in updateFromCequintCallerId()
631 if (!TextUtils.isEmpty(cequintCallerIdContact.geolocation())) { in updateFromCequintCallerId()
632 info.geoDescription = cequintCallerIdContact.geolocation(); in updateFromCequintCallerId()
636 if (!info.contactExists && info.photoUri == null && cequintCallerIdContact.photoUri() != null) { in updateFromCequintCallerId()
637 info.photoUri = UriUtils.parseUriOrNull(cequintCallerIdContact.photoUri()); in updateFromCequintCallerId()
/packages/apps/Dialer/java/com/android/incallui/
DContactInfoCache.java515 CequintCallerIdContact cequintCallerIdContact = in maybeUpdateFromCequintCallerId() local
519 if (cequintCallerIdContact == null) { in maybeUpdateFromCequintCallerId()
524 if (TextUtils.isEmpty(callerInfo.name) && !TextUtils.isEmpty(cequintCallerIdContact.name())) { in maybeUpdateFromCequintCallerId()
525 callerInfo.name = cequintCallerIdContact.name(); in maybeUpdateFromCequintCallerId()
528 if (!TextUtils.isEmpty(cequintCallerIdContact.geolocation())) { in maybeUpdateFromCequintCallerId()
529 callerInfo.geoDescription = cequintCallerIdContact.geolocation(); in maybeUpdateFromCequintCallerId()
536 && cequintCallerIdContact.photoUri() != null) { in maybeUpdateFromCequintCallerId()
537 callerInfo.contactDisplayPhotoUri = Uri.parse(cequintCallerIdContact.photoUri()); in maybeUpdateFromCequintCallerId()
/packages/apps/Dialer/java/com/android/dialer/oem/
DCequintCallerIdManager.java178 CequintCallerIdContact cequintCallerIdContact = in getCachedCequintCallerIdContact() local
180 if (cequintCallerIdContact != null) { in getCachedCequintCallerIdContact()
181 callLogCache.put(number, cequintCallerIdContact); in getCachedCequintCallerIdContact()
183 return cequintCallerIdContact; in getCachedCequintCallerIdContact()