Searched refs:photoBytes (Results 1 - 5 of 5) sorted by relevance

/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java737 final byte[] photoBytes = mPhotoCacheMap.get(photoThumbnailUri);
738 if (photoBytes != null) {
739 entry.setPhotoBytes(photoBytes);
760 final byte[] photoBytes = photoCursor.getBlob(PhotoQuery.PHOTO);
761 entry.setPhotoBytes(photoBytes);
766 mPhotoCacheMap.put(photoThumbnailUri, photoBytes);
782 byte[] photoBytes = mPhotoCacheMap.get(photoThumbnailUri);
783 if (photoBytes != null) {
784 entry.setPhotoBytes(photoBytes);
792 photoBytes
[all...]
H A DRecipientEntry.java213 public synchronized void setPhotoBytes(byte[] photoBytes) { argument
214 mPhotoBytes = photoBytes;
H A DRecipientEditTextView.java602 byte[] photoBytes = contact.getPhotoBytes();
605 if (photoBytes == null && contact.getPhotoThumbnailUri() != null) {
609 photoBytes = contact.getPhotoBytes();
613 if (photoBytes != null) {
614 photo = BitmapFactory.decodeByteArray(photoBytes, 0, photoBytes.length);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java264 byte[] photoBytes = new byte[] {1};
265 property.setByteValue(photoBytes);
267 PhotoData photoData = new PhotoData("PNG", photoBytes, false);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java984 public PhotoData(String format, byte[] photoBytes, boolean isPrimary) { argument
986 mBytes = photoBytes;
1977 private void addPhotoBytes(String formatName, byte[] photoBytes, boolean isPrimary) { argument
1981 final PhotoData photoData = new PhotoData(formatName, photoBytes, isPrimary);

Completed in 228 milliseconds