HomeSort by relevance Sort by last modified time
    Searched refs:gif (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/ImageMagick/PerlMagick/demo/
Makefile 16 /bin/rm -f demo.jpg button.gif model.png shadow.gif tree.gif \
17 compose-specials.jpg single-pixels.gif pixel-fx.gif
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/images/cursors/
cursors.properties 14 Cursor.CopyDrop.32x32.File=motif_CopyDrop32x32.gif
18 Cursor.MoveDrop.32x32.File=motif_MoveDrop32x32.gif
22 Cursor.LinkDrop.32x32.File=motif_LinkDrop32x32.gif
26 Cursor.CopyNoDrop.32x32.File=motif_CopyNoDrop32x32.gif
30 Cursor.MoveNoDrop.32x32.File=motif_MoveNoDrop32x32.gif
34 Cursor.LinkNoDrop.32x32.File=motif_LinkNoDrop32x32.gif
38 Cursor.Invalid.32x32.File=invalid32x32.gif
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/images/cursors/
cursors.properties 14 Cursor.CopyDrop.32x32.File=motif_CopyDrop32x32.gif
18 Cursor.MoveDrop.32x32.File=motif_MoveDrop32x32.gif
22 Cursor.LinkDrop.32x32.File=motif_LinkDrop32x32.gif
26 Cursor.CopyNoDrop.32x32.File=motif_CopyNoDrop32x32.gif
30 Cursor.MoveNoDrop.32x32.File=motif_MoveNoDrop32x32.gif
34 Cursor.LinkNoDrop.32x32.File=motif_LinkNoDrop32x32.gif
38 Cursor.Invalid.32x32.File=invalid32x32.gif
  /packages/apps/Messaging/tools/messagegen/
listimages 16 for file in `ls *.jpg *.gif`;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawableResource.java 1 package com.bumptech.glide.load.resource.gif;
7 * A resource wrapping an {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
GifBitmapProvider.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameModelLoader.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameResourceDecoder.java 1 package com.bumptech.glide.load.resource.gif;
26 return "GifFrameResourceDecoder.com.bumptech.glide.load.resource.gif";
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
GifDrawableBytesTranscoder.java 5 import com.bumptech.glide.load.resource.gif.GifDrawable;
9 * {@link com.bumptech.glide.load.resource.gif.GifDrawable} into bytes by obtaining the original bytes of the GIF from
10 * the {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
  /prebuilts/go/darwin-x86/src/image/gif/
reader.go 5 // Package gif implements a GIF image decoder and encoder.
7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt.
8 package gif package
21 errNotEnough = errors.New("gif: not enough image data")
22 errTooMuch = errors.New("gif: too much image data")
23 errBadPixel = errors.New("gif: invalid pixel value")
82 // decoder is the type used to decode a GIF file.
112 // blockReader parses the block structure of GIF image data, whic
    [all...]
reader_test.go 5 package gif package
17 // header, palette and trailer are parts of a valid 2x1 GIF image.
56 // then this should result in an invalid GIF image. First, write a
144 // testGIF is a simple GIF that we can modify to test different scenarios.
174 gif := make([]byte, len(testGIF))
175 copy(gif, testGIF)
177 gif[32] = 2
178 want := "gif: frame bounds larger than image bounds"
179 try(t, gif, want)
183 gif[32] =
    [all...]
  /prebuilts/go/linux-x86/src/image/gif/
reader.go 5 // Package gif implements a GIF image decoder and encoder.
7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt.
8 package gif package
21 errNotEnough = errors.New("gif: not enough image data")
22 errTooMuch = errors.New("gif: too much image data")
23 errBadPixel = errors.New("gif: invalid pixel value")
82 // decoder is the type used to decode a GIF file.
112 // blockReader parses the block structure of GIF image data, whic
    [all...]
reader_test.go 5 package gif package
17 // header, palette and trailer are parts of a valid 2x1 GIF image.
56 // then this should result in an invalid GIF image. First, write a
144 // testGIF is a simple GIF that we can modify to test different scenarios.
174 gif := make([]byte, len(testGIF))
175 copy(gif, testGIF)
177 gif[32] = 2
178 want := "gif: frame bounds larger than image bounds"
179 try(t, gif, want)
183 gif[32] =
    [all...]
  /external/proguard/examples/
proguardgui.pro 45 -adaptresourcefilenames **.properties,**.gif,**.jpg
  /prebuilts/tools/common/proguard/proguard4.7/examples/
proguardgui.pro 44 -adaptresourcefilenames **.properties,**.gif,**.jpg
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 51 ALOGW("Gif load failed");
56 ALOGW("Gif slurp failed");
220 GifFileType* gif = mFrameSequence.getGif(); local
221 if (!gif) {
250 DGifSavedExtensionToGCB(gif, i, &gcb);
251 const SavedImage& frame = gif->SavedImages[i];
268 DGifSavedExtensionToGCB(gif, i - 1, &prevGcb);
269 const SavedImage& prevFrame = gif->SavedImages[i - 1];
305 const ColorMapObject* cmap = gif->SColorMap;
328 const int maxFrame = gif->ImageCount
    [all...]
  /frameworks/base/core/jni/android/graphics/
GIFMovie.cpp 346 const GifFileType* gif = fGIF; local
347 if (nullptr == gif)
350 if (gif->ImageCount < 1) {
354 const int width = gif->SWidth;
355 const int height = gif->SHeight;
394 if (gif->SColorMap != nullptr && gif->SBackGroundColor < gif->SColorMap->ColorCount) {
395 const GifColorType& col = gif->SColorMap->Colors[gif->SBackGroundColor]
    [all...]
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/html/
manpage.css 186 background-image: url(/global/mvc_objects/images/bttndrkblue_bgtop.gif);
190 background-image: url(/global/mvc_objects/images/bttndrkblue_bgleft.gif);
199 background-image: url(/global/mvc_objects/images/bttndrkblue_bgmiddle.gif);
204 background-image: url(/global/mvc_objects/images/bttndrkblue_bgright.gif);
208 background-image: url(/global/mvc_objects/images/bttndrkblue_bgbottom.gif);
223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y;
227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y;
231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x;
235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x;
239 background: #ffffff url(/i/corner-rightline.gif) repeat-y;
    [all...]
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/
manpage.css 186 background-image: url(/global/mvc_objects/images/bttndrkblue_bgtop.gif);
190 background-image: url(/global/mvc_objects/images/bttndrkblue_bgleft.gif);
199 background-image: url(/global/mvc_objects/images/bttndrkblue_bgmiddle.gif);
204 background-image: url(/global/mvc_objects/images/bttndrkblue_bgright.gif);
208 background-image: url(/global/mvc_objects/images/bttndrkblue_bgbottom.gif);
223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y;
227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y;
231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x;
235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x;
239 background: #ffffff url(/i/corner-rightline.gif) repeat-y;
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapper.java 6 import com.bumptech.glide.load.resource.gif.GifDrawable;
10 * {@link com.bumptech.glide.load.resource.gif.GifDrawable} resource.
18 throw new IllegalArgumentException("Can only contain either a bitmap resource or a gif resource, not both");
21 throw new IllegalArgumentException("Must contain either a bitmap resource or a gif resource");
46 * Returns the wrapped {@link com.bumptech.glide.load.resource.gif.GifDrawable} resource if it exists, or null.
GifBitmapWrapperResource.java 6 import com.bumptech.glide.load.resource.gif.GifDrawable;
GifBitmapWrapperTransformation.java 8 import com.bumptech.glide.load.resource.gif.GifDrawable;
9 import com.bumptech.glide.load.resource.gif.GifDrawableTransformation;
13 * transformation to both {@link android.graphics.Bitmap}s and {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
  /external/libxml2/doc/
Makefile.am 26 $(wildcard *.gif) w3c.png $(wildcard html/*.html) \
70 DOM.gif \
73 Libxml2-Logo-180x168.gif \
74 Libxml2-Logo-90x34.gif \
82 catalog.gif \
154 libxml.gif \
162 redhat.gif \
167 smallfootonly.gif \
168 structure.gif \
337 -$(INSTALL) -m 0644 $(srcdir)/xml.html $(srcdir)/encoding.html $(srcdir)/FAQ.html $(srcdir)/structure.gif $(srcdir)/DOM.gif $(srcdir)/smallfootonly.gif $(srcdir)/redhat.gif $(srcdir)/libxml.gif $(srcdir)/ (…)
    [all...]
  /prebuilts/go/darwin-x86/src/image/
decode_test.go 15 _ "image/gif"
28 // GIF images are restricted to a 256-color palette and the conversion
29 // to GIF loses significant image quality.
30 {"testdata/video-001.png", "testdata/video-001.gif", 64 << 8},
31 {"testdata/video-001.png", "testdata/video-001.interlaced.gif", 64 << 8},
32 {"testdata/video-001.png", "testdata/video-001.5bpp.gif", 128 << 8},
119 if imageFormat == "gif" {
120 // Each frame of a GIF can have a frame-local palette override the
121 // GIF-global palette. Thus, image.Decode can yield a different ColorModel
  /prebuilts/go/linux-x86/src/image/
decode_test.go 15 _ "image/gif"
28 // GIF images are restricted to a 256-color palette and the conversion
29 // to GIF loses significant image quality.
30 {"testdata/video-001.png", "testdata/video-001.gif", 64 << 8},
31 {"testdata/video-001.png", "testdata/video-001.interlaced.gif", 64 << 8},
32 {"testdata/video-001.png", "testdata/video-001.5bpp.gif", 128 << 8},
119 if imageFormat == "gif" {
120 // Each frame of a GIF can have a frame-local palette override the
121 // GIF-global palette. Thus, image.Decode can yield a different ColorModel

Completed in 492 milliseconds

1 2 3 4