Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/calllogutils/
DPhotoInfoBuilder.java56 private static PhotoInfo.Builder fromNumberAttributes(NumberAttributes numberAttributes) { in fromNumberAttributes() argument
58 .setName(numberAttributes.getName()) in fromNumberAttributes()
59 .setPhotoUri(numberAttributes.getPhotoUri()) in fromNumberAttributes()
60 .setPhotoId(numberAttributes.getPhotoId()) in fromNumberAttributes()
61 .setLookupUri(numberAttributes.getLookupUri()) in fromNumberAttributes()
62 .setIsBusiness(numberAttributes.getIsBusiness()) in fromNumberAttributes()
63 .setIsBlocked(numberAttributes.getIsBlocked()); in fromNumberAttributes()
/packages/apps/Dialer/java/com/android/dialer/calllog/
DCallLogCacheUpdater.java111 NumberAttributes numberAttributes =
122 .withValue(Calls.CACHED_LOOKUP_URI, numberAttributes.getLookupUri())
124 .withValue(Calls.CACHED_NAME, numberAttributes.getName())
127 .withValue(Calls.CACHED_NUMBER_LABEL, numberAttributes.getNumberTypeLabel())
131 .withValue(Calls.CACHED_PHOTO_ID, numberAttributes.getPhotoId())
132 .withValue(Calls.CACHED_PHOTO_URI, numberAttributes.getPhotoUri())
137 new String[] {numberAttributes.getName()})
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
DVoicemailCursorLoader.java89 NumberAttributes numberAttributes; in toVoicemailEntry() local
91 numberAttributes = NumberAttributes.parseFrom(cursor.getBlob(NUMBER_ATTRIBUTES)); in toVoicemailEntry()
99 !numberAttributes.getIsCp2InfoIncomplete(), in toVoicemailEntry()
111 .setNumberAttributes(numberAttributes) in toVoicemailEntry()