Searched defs:photoUri (Results 26 - 29 of 29) sorted by relevance

12

/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DComposeMessageView.java88 void displayPhoto(Uri photoUri, Rect imageBounds, boolean isDraft); argument
869 public void displayPhoto(final Uri photoUri, final Rect imageBounds) { argument
870 mHost.displayPhoto(photoUri, imageBounds, true /* isDraft */);
H A DConversationFragment.java659 public void displayPhoto(final Uri photoUri, final Rect imageBounds, final boolean isDraft) { argument
660 displayPhoto(photoUri, imageBounds, isDraft, mConversationId, getActivity());
663 public static void displayPhoto(final Uri photoUri, final Rect imageBounds, argument
669 activity, photoUri, imageBounds, imagesUri);
/packages/apps/Contacts/src/com/android/contacts/
H A DContactPhotoManager.java198 * @param photoUri The photo URI to remove the contact type from.
201 public static Uri removeContactType(Uri photoUri) { argument
202 String encodedFragment = photoUri.getEncodedFragment();
204 Builder builder = photoUri.buildUpon();
208 return photoUri;
214 * @param photoUri The URI to inspect.
217 public static boolean isBusinessContactUri(Uri photoUri) { argument
218 if (photoUri == null) {
222 String encodedFragment = photoUri.getEncodedFragment();
483 * @param photoUri Th
494 loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme, boolean isCircular, DefaultImageRequest defaultImageRequest, DefaultImageProvider defaultProvider) argument
506 loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme, boolean isCircular, DefaultImageRequest defaultImageRequest) argument
520 loadDirectoryPhoto(ImageView view, Uri photoUri, boolean darkTheme, boolean isCircular, DefaultImageRequest defaultImageRequest) argument
559 cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) argument
838 loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme, boolean isCircular, DefaultImageRequest defaultImageRequest, DefaultImageProvider defaultProvider) argument
1221 cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) argument
[all...]
H A DContactSaveService.java645 Uri photoUri = updatedPhotos.getParcelable(key);
655 if (rawContactId < 0 || !saveUpdatedPhoto(rawContactId, photoUri, saveMode)) {
701 private boolean saveUpdatedPhoto(long rawContactId, Uri photoUri, int saveMode) { argument
706 return ContactPhotoUtils.savePhotoFromUriToUri(this, photoUri, outputUri, (saveMode == 0));

Completed in 319 milliseconds

12