Home
last modified time | relevance | path

Searched refs:displayPhoto (Results 1 – 7 of 7) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DPhotoStore.java188 Bitmap displayPhoto = photoProcessor.getDisplayPhoto(); in insert() local
189 int width = displayPhoto.getWidth(); in insert()
190 int height = displayPhoto.getHeight(); in insert()
DContactsProvider2.java8826 boolean displayPhoto) throws FileNotFoundException { in openCorpContactPicture() argument
8841 .appendPath(displayPhoto ? in openCorpContactPicture()
/packages/apps/Messaging/src/com/android/messaging/ui/attachmentchooser/
DAttachmentGridView.java41 void displayPhoto(final Rect viewRect, final Uri photoUri); in displayPhoto() method
68 mHost.displayPhoto(UiUtils.getMeasuredBoundsOnScreen(view), attachment.getContentUri()); in onItemClicked()
DAttachmentChooserFragment.java137 public void displayPhoto(final Rect viewRect, final Uri photoUri) { in displayPhoto() method in AttachmentChooserFragment
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DComposeMessageView.java91 void displayPhoto(Uri photoUri, Rect imageBounds, boolean isDraft); in displayPhoto() method
924 public void displayPhoto(final Uri photoUri, final Rect imageBounds) { in displayPhoto() method in ComposeMessageView
925 mHost.displayPhoto(photoUri, imageBounds, true /* isDraft */); in displayPhoto()
DConversationFragment.java661 public void displayPhoto(final Uri photoUri, final Rect imageBounds, final boolean isDraft) { in displayPhoto() method in ConversationFragment
662 displayPhoto(photoUri, imageBounds, isDraft, mConversationId, getActivity()); in displayPhoto()
665 public static void displayPhoto(final Uri photoUri, final Rect imageBounds, in displayPhoto() method in ConversationFragment
1264 displayPhoto(attachment.getContentUri(), imageBounds, false /* isDraft */); in onAttachmentClick()
/packages/apps/Messaging/src/com/android/messaging/ui/
DAttachmentPreview.java326 mComposeMessageView.displayPhoto(attachment.getContentUri(), viewBoundsOnScreen); in onAttachmentClick()