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

  /external/chromium_org/third_party/WebKit/Source/web/
WebImageDecoder.cpp 56 size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes();
60 m_private = new BMPImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes);
63 m_private = new ICOImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.cpp 90 size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes();
97 return adoptPtr(new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
100 return adoptPtr(new PNGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
103 return adoptPtr(new GIFImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
106 return adoptPtr(new ICOImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
109 return adoptPtr(new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
112 return adoptPtr(new BMPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
ImageDecoder.h 60 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes)
63 , m_maxDecodedBytes(maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageDecoder.h 42 BMPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
BMPImageDecoder.cpp 46 size_t maxDecodedBytes)
47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h 41 PNGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
PNGImageDecoder.cpp 219 size_t maxDecodedBytes)
220 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h 43 JPEGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
JPEGImageDecoderTest.cpp 60 PassOwnPtr<JPEGImageDecoder> createDecoder(size_t maxDecodedBytes)
62 return adoptPtr(new JPEGImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes));
67 void downsample(size_t maxDecodedBytes, unsigned* outputWidth, unsigned* outputHeight, const char* imageFilePath)
72 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes);
JPEGImageDecoder.cpp 597 size_t maxDecodedBytes)
598 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.h 43 GIFImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
GIFImageDecoder.cpp 39 size_t maxDecodedBytes)
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h 41 WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
WEBPImageDecoder.cpp 130 size_t maxDecodedBytes)
131 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h 43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
ICOImageDecoder.cpp 50 size_t maxDecodedBytes)
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)

Completed in 246 milliseconds