Home
last modified time | relevance | path

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

/frameworks/opt/chips/src/com/android/ex/chips/
DDefaultPhotoManager.java65 final Uri photoThumbnailUri = entry.getPhotoThumbnailUri(); in populatePhotoBytesAsync() local
66 if (photoThumbnailUri != null) { in populatePhotoBytesAsync()
67 final byte[] photoBytes = mPhotoCacheMap.get(photoThumbnailUri); in populatePhotoBytesAsync()
78 fetchPhotoAsync(entry, photoThumbnailUri, callback); in populatePhotoBytesAsync()
85 private void fetchPhotoAsync(final RecipientEntry entry, final Uri photoThumbnailUri, in fetchPhotoAsync() argument
93 photoThumbnailUri, PhotoQuery.PROJECTION, null, null, null); in fetchPhotoAsync()
109 photoThumbnailUri); in fetchPhotoAsync()
134 mPhotoCacheMap.put(photoThumbnailUri, photoBytes); in fetchPhotoAsync()
DRecipientEntry.java103 long dataId, Uri photoThumbnailUri, boolean isFirstLevel, boolean isValid, in RecipientEntry() argument
106 destinationLabel, contactId, directoryId, dataId, photoThumbnailUri, in RecipientEntry()
112 long dataId, Uri photoThumbnailUri, boolean shouldDisplayIcon, in RecipientEntry() argument
123 mPhotoThumbnailUri = photoThumbnailUri; in RecipientEntry()
135 long dataId, Uri photoThumbnailUri, boolean isFirstLevel, boolean isValid, in RecipientEntry() argument
138 contactId, directoryId, dataId, photoThumbnailUri, isFirstLevel, isValid, in RecipientEntry()
192 Long directoryId, long dataId, Uri photoThumbnailUri, boolean isValid, in constructTopLevelEntry() argument
196 contactId, directoryId, dataId, photoThumbnailUri, true, isValid, lookupKey, in constructTopLevelEntry()
DRecipientAlternatesAdapter.java533 final String photoThumbnailUri = (String) row[Query.PHOTO_THUMBNAIL_URI]; in removeUndesiredDestinations() local
534 if (photoThumbnailUri != null) { in removeUndesiredDestinations()
535 if (sCorrectedPhotoUris.containsKey(photoThumbnailUri)) { in removeUndesiredDestinations()
536 row[Query.PHOTO_THUMBNAIL_URI] = sCorrectedPhotoUris.get(photoThumbnailUri); in removeUndesiredDestinations()
537 } else if (photoThumbnailUri.indexOf('?') != photoThumbnailUri.lastIndexOf('?')) { in removeUndesiredDestinations()
538 final String[] parts = photoThumbnailUri.split("\\?"); in removeUndesiredDestinations()
550 sCorrectedPhotoUris.put(photoThumbnailUri, correctedUri); in removeUndesiredDestinations()