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

  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
ImageRequest.java 112 if (!mDescriptor.isStatic() && isGif()) {
128 protected boolean isGif() throws FileNotFoundException {
129 return ImageUtils.isGif(getInputStreamForResource());
NetworkUriImageRequest.java 54 protected boolean isGif() throws FileNotFoundException {
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 341 static bool isGif(void* header, int header_size) {
357 isGif,
  /packages/apps/Messaging/src/com/android/messaging/util/
ImageUtils.java 297 public static boolean isGif(String contentType, Uri contentUri) {
306 return ImageUtils.isGif(inputStream);
319 public static boolean isGif(InputStream inputStream) {
474 return ImageUtils.isGif(mContentType, mUri) ? resizeGifImage() : resizeStaticImage();
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
MessagePartData.java 485 if (ImageUtils.isGif(mContentType, mContentUri)) {
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsUtils.java 341 final boolean isGif = ImageUtils.isGif(contentType, part.getContentUri());
342 contentType = isGif ? ContentType.IMAGE_GIF : contentType;
343 srcName = String.format(isGif ? "image%06d.gif" : "image%06d.jpg", index);
681 final String contentTypeOfResizedImage = ImageUtils.isGif(contentType, imageUri)
    [all...]

Completed in 147 milliseconds