Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java634 CequintCallerIdContact cequintCallerIdContact = in updateFromCequintCallerId() local
636 if (cequintCallerIdContact == null) { in updateFromCequintCallerId()
639 if (TextUtils.isEmpty(info.name) && !TextUtils.isEmpty(cequintCallerIdContact.name)) { in updateFromCequintCallerId()
640 info.name = cequintCallerIdContact.name; in updateFromCequintCallerId()
642 if (!TextUtils.isEmpty(cequintCallerIdContact.geoDescription)) { in updateFromCequintCallerId()
643 info.geoDescription = cequintCallerIdContact.geoDescription; in updateFromCequintCallerId()
647 if (!info.contactExists && info.photoUri == null && cequintCallerIdContact.imageUrl != null) { in updateFromCequintCallerId()
648 info.photoUri = UriUtils.parseUriOrNull(cequintCallerIdContact.imageUrl); in updateFromCequintCallerId()
/packages/apps/Dialer/java/com/android/incallui/
DContactInfoCache.java502 CequintCallerIdContact cequintCallerIdContact = in maybeUpdateFromCequintCallerId() local
506 if (cequintCallerIdContact == null) { in maybeUpdateFromCequintCallerId()
511 if (TextUtils.isEmpty(callerInfo.name) && !TextUtils.isEmpty(cequintCallerIdContact.name)) { in maybeUpdateFromCequintCallerId()
512 callerInfo.name = cequintCallerIdContact.name; in maybeUpdateFromCequintCallerId()
515 if (!TextUtils.isEmpty(cequintCallerIdContact.geoDescription)) { in maybeUpdateFromCequintCallerId()
516 callerInfo.geoDescription = cequintCallerIdContact.geoDescription; in maybeUpdateFromCequintCallerId()
523 && cequintCallerIdContact.imageUrl != null) { in maybeUpdateFromCequintCallerId()
524 callerInfo.contactDisplayPhotoUri = Uri.parse(cequintCallerIdContact.imageUrl); in maybeUpdateFromCequintCallerId()
/packages/apps/Dialer/java/com/android/dialer/oem/
DCequintCallerIdManager.java150 CequintCallerIdContact cequintCallerIdContact = in getCequintCallerIdContact() local
156 if (cequintCallerIdContact != null) { in getCequintCallerIdContact()
157 callLogCache.put(number, cequintCallerIdContact); in getCequintCallerIdContact()
159 return cequintCallerIdContact; in getCequintCallerIdContact()