HomeSort by relevance Sort by last modified time
    Searched refs:UNSPECIFIED_SIZE (Results 1 - 19 of 19) sorted by null

  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
MessagePartVideoThumbnailRequestDescriptor.java 26 super(messagePart, ImageRequest.UNSPECIFIED_SIZE, ImageRequest.UNSPECIFIED_SIZE, false);
30 super(null, uri, ImageRequest.UNSPECIFIED_SIZE, ImageRequest.UNSPECIFIED_SIZE,
31 ImageRequest.UNSPECIFIED_SIZE, ImageRequest.UNSPECIFIED_SIZE, false);
ImageRequestDescriptor.java 67 this(ImageRequest.UNSPECIFIED_SIZE, ImageRequest.UNSPECIFIED_SIZE,
68 ImageRequest.UNSPECIFIED_SIZE, ImageRequest.UNSPECIFIED_SIZE, false, false, 0, 0);
73 ImageRequest.UNSPECIFIED_SIZE, ImageRequest.UNSPECIFIED_SIZE, false, false, 0, 0);
80 Assert.isTrue(desiredWidth == ImageRequest.UNSPECIFIED_SIZE || desiredWidth > 0);
81 Assert.isTrue(desiredHeight == ImageRequest.UNSPECIFIED_SIZE || desiredHeight > 0);
82 Assert.isTrue(sourceWidth == ImageRequest.UNSPECIFIED_SIZE || sourceWidth > 0);
83 Assert.isTrue(sourceHeight == ImageRequest.UNSPECIFIED_SIZE || sourceHeight > 0)
    [all...]
UriImageRequestDescriptor.java 28 this(uri, UriImageRequest.UNSPECIFIED_SIZE, UriImageRequest.UNSPECIFIED_SIZE, false, false,
47 this(uri, desiredWidth, desiredHeight, UriImageRequest.UNSPECIFIED_SIZE,
48 UriImageRequest.UNSPECIFIED_SIZE, allowCompression, isStatic, cropToCircle,
FileImageRequestDescriptor.java 38 this(path, desiredWidth, desiredHeight, FileImageRequest.UNSPECIFIED_SIZE,
39 FileImageRequest.UNSPECIFIED_SIZE, canUseThumbnail, canCompress, isStatic);
MessagePartImageRequestDescriptor.java 58 updatedWidth != MessagePartData.UNSPECIFIED_SIZE &&
59 updatedHeight != MessagePartData.UNSPECIFIED_SIZE &&
ImageRequest.java 44 public static final int UNSPECIFIED_SIZE = MessagePartData.UNSPECIFIED_SIZE;
138 final boolean unknownSize = mDescriptor.sourceWidth == UNSPECIFIED_SIZE ||
139 mDescriptor.sourceHeight == UNSPECIFIED_SIZE;
  /packages/apps/Messaging/src/com/android/messaging/ui/
VideoThumbnailView.java 85 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
86 mVideoHeight = ImageRequest.UNSPECIFIED_SIZE;
162 R.styleable.VideoThumbnailView_android_maxHeight, ImageRequest.UNSPECIFIED_SIZE);
163 if (maxHeight != ImageRequest.UNSPECIFIED_SIZE) {
203 return mVideoWidth != ImageRequest.UNSPECIFIED_SIZE &&
204 mVideoHeight != ImageRequest.UNSPECIFIED_SIZE;
227 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
228 mVideoHeight = ImageRequest.UNSPECIFIED_SIZE;
248 mVideoWidth = ImageRequest.UNSPECIFIED_SIZE;
249 mVideoHeight = ImageRequest.UNSPECIFIED_SIZE;
    [all...]
AttachmentPreviewFactory.java 178 maxWidth = ImageRequest.UNSPECIFIED_SIZE;
181 maxHeight = ImageRequest.UNSPECIFIED_SIZE;
201 layoutParams.width = attachmentData.getWidth() == MessagePartData.UNSPECIFIED_SIZE ?
203 layoutParams.height = attachmentData.getHeight() == MessagePartData.UNSPECIFIED_SIZE ?
AsyncImageView.java 164 if (descriptor.sourceWidth != ImageRequest.UNSPECIFIED_SIZE &&
165 descriptor.sourceHeight != ImageRequest.UNSPECIFIED_SIZE) {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
MessagePartData.java 54 public static final int UNSPECIFIED_SIZE = MessagingContentProvider.UNSPECIFIED_SIZE;
106 this(null, null, UNSPECIFIED_SIZE, UNSPECIFIED_SIZE);
113 this(null, messageText, ContentType.TEXT_PLAIN, null, UNSPECIFIED_SIZE, UNSPECIFIED_SIZE,
242 if (mWidth != UNSPECIFIED_SIZE) {
245 if (mHeight != UNSPECIFIED_SIZE) {
455 if (imageSize.width() != ImageRequest.UNSPECIFIED_SIZE &&
456 imageSize.height() != ImageRequest.UNSPECIFIED_SIZE) {
    [all...]
GalleryGridItemData.java 79 sourceWidth = ImageRequest.UNSPECIFIED_SIZE;
82 sourceHeight = ImageRequest.UNSPECIFIED_SIZE;
PendingAttachmentData.java 70 return createPendingAttachmentData(null, contentType, sourceUri, UNSPECIFIED_SIZE,
71 UNSPECIFIED_SIZE);
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
ImageRequestTest.java 64 Matchers.eq(ImageRequest.UNSPECIFIED_SIZE),
65 Matchers.eq(ImageRequest.UNSPECIFIED_SIZE));
  /packages/apps/Messaging/src/com/android/messaging/util/
ImageUtils.java 188 * @param reqWidth the desired width of the bitmap. Can be ImageRequest.UNSPECIFIED_SIZE.
189 * @param reqHeight the desired height of the bitmap. Can be ImageRequest.UNSPECIFIED_SIZE.
199 final boolean checkHeight = reqHeight != ImageRequest.UNSPECIFIED_SIZE;
200 final boolean checkWidth = reqWidth != ImageRequest.UNSPECIFIED_SIZE;
392 // Initial size of the image (typically provided but can be UNSPECIFIED_SIZE)
565 if (mWidth == MessagingContentProvider.UNSPECIFIED_SIZE ||
566 mHeight == MessagingContentProvider.UNSPECIFIED_SIZE) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
DatabaseHelper.java 350 + MessagingContentProvider.UNSPECIFIED_SIZE + "),"
352 + MessagingContentProvider.UNSPECIFIED_SIZE + "),"
    [all...]
MessagingContentProvider.java 144 public static final int UNSPECIFIED_SIZE = -1;
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationMessageView.java 562 MessagePartData.UNSPECIFIED_SIZE,
571 MessagePartData.UNSPECIFIED_SIZE, true /* allowCompression */,
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
CameraManager.java 875 int width = ImageRequest.UNSPECIFIED_SIZE;
876 int height = ImageRequest.UNSPECIFIED_SIZE;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsUtils.java     [all...]

Completed in 390 milliseconds