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

1 2 3

  /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
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
__init__.py 102 dot.save_img(file_name='graph', file_type='gif')
  /docs/source.android.com/scripts/
cleanup.sh 3 for img in *.png *.gif *.jpg
  /packages/apps/Messaging/tools/messagegen/
listimages 16 for file in `ls *.jpg *.gif`;
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 41 "images.gif.suppressDecoderWarnings", true,
42 "Suppress GIF warnings and errors when calling image decode "
46 /* Implement the GIF interlace algorithm in an iterator.
118 static const ColorMapObject* find_colormap(const GifFileType* gif) {
119 const ColorMapObject* cmap = gif->Image.ColorMap;
121 cmap = gif->SColorMap;
173 * Skip rows in the source gif image.
174 * @param gif Source image.
175 * @param dst Scratch output needed by gif library call. Must be >= width bytes.
180 static bool skip_src_rows(GifFileType* gif, uint8_t* dst, int width, int rowsToSkip)
245 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc); local
    [all...]
SkMovie_gif.cpp 347 const GifFileType* gif = fGIF; local
348 if (nullptr == gif)
351 if (gif->ImageCount < 1) {
355 const int width = gif->SWidth;
356 const int height = gif->SHeight;
395 if (gif->SColorMap != nullptr) {
396 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
407 if (!trans && gif->SColorMap != nullptr) {
425 drawFrame(bm, cur, gif->SColorMap);
  /external/skia/src/codec/
SkGifCodec.cpp 19 * Checks the start of the stream to see if the image is a gif
37 SkCodecPrintf("Gif Error: %s\n", msg);
51 * Open the gif file
122 * This function cleans up the gif object after the decode completes
125 void SkGifCodec::CloseGif(GifFileType* gif) {
127 DGifCloseFile(gif);
129 DGifCloseFile(gif, nullptr);
169 // Read gif header, logical screen descriptor, and global color table
170 SkAutoTCallVProc<GifFileType, CloseGif> gif(open_gif(stream));
172 if (nullptr == gif) {
    [all...]
SkGifCodec.h 18 * This class implements the decoding for gif images
27 * Creates a gif decoder
57 * Performs the full gif decode
75 * A gif can contain multiple image frames. We will only decode the first
80 * @param gif Pointer to the library type that manages the gif decode
84 static Result ReadUpToFirstImage(GifFileType* gif, uint32_t* transIndex);
87 * A gif may contain many image frames, all of different sizes.
88 * This function checks if the gif dimensions are valid, based on the frame
89 * dimensions, and corrects the gif dimensions if necessary
    [all...]
  /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";
GifDrawableLoadProvider.java 1 package com.bumptech.glide.load.resource.gif;
18 * {@link com.bumptech.glide.load.resource.gif.GifDrawable} that can be used to display an animated GIF.
GifDrawableTransformation.java 1 package com.bumptech.glide.load.resource.gif;
12 * and can apply it to every frame of any {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
29 // our gif, here we create a stand in for a frame and pass it to the transformation to see what the final
  /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}.
  /external/proguard/examples/
proguardgui.pro 45 -adaptresourcefilenames **.properties,**.gif,**.jpg
  /prebuilts/tools/common/proguard/proguard4.7/examples/
proguardgui.pro 44 -adaptresourcefilenames **.properties,**.gif,**.jpg
proguardall.pro 34 -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...]
  /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...]
  /external/clang/www/analyzer/scripts/
expandcollapse.js 77 expander.src = imgPath + "ellipses_light.gif";
86 (getCellInfo(this.id).expanded ? "arrows_light.gif"
87 : "ellipses_light.gif");
91 (getCellInfo(this.id).expanded ? "arrows_dark.gif"
92 : "ellipses_dark.gif");
96 (getCellInfo(this.id).expanded ? "arrows_light.gif"
97 : "ellipses_light.gif");
171 expander.src = imgPath + "ellipses_light.gif";
176 expander.src = imgPath + "arrows_light.gif";
  /prebuilts/tools/common/proguard/proguard4.7/build/
makefile 69 $(shell find $(SRC)/$(dir $(1)) -maxdepth 1 \( -name \*.properties -o -name \*.png -o -name \*.gif -o -name \*.pro \) -printf $(CLASSES)/$(dir $(1))%P\\n)
84 $(CLASSES)/%.properties $(CLASSES)/%.png $(CLASSES)/%.gif $(CLASSES)/%.pro:

Completed in 2131 milliseconds

1 2 3