/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
D | ImageDecoder.cpp | 90 size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes(); in create() local 97 … return adoptPtr(new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create() 100 … return adoptPtr(new PNGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create() 103 … return adoptPtr(new GIFImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create() 106 … return adoptPtr(new ICOImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create() 109 … return adoptPtr(new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create() 112 … return adoptPtr(new BMPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
|
D | ImageDecoder.h | 74 …Option, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) in ImageDecoder() argument 77 , m_maxDecodedBytes(maxDecodedBytes) in ImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
D | JPEGImageDecoderTest.cpp | 60 PassOwnPtr<JPEGImageDecoder> createDecoder(size_t maxDecodedBytes) in createDecoder() argument 62 …er(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes)); in createDecoder() 67 void downsample(size_t maxDecodedBytes, unsigned* outputWidth, unsigned* outputHeight, const char* … in downsample() argument 72 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes); in downsample() 82 void readYUV(size_t maxDecodedBytes, unsigned* outputYWidth, unsigned* outputYHeight, unsigned* out… in readYUV() argument 87 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes); in readYUV()
|
D | JPEGImageDecoder.h | 43 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
|
D | JPEGImageDecoder.cpp | 685 size_t maxDecodedBytes) in JPEGImageDecoder() argument 686 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in JPEGImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebImageDecoder.cpp | 54 size_t maxDecodedBytes = Platform::current()->maxDecodedImageBytes(); in init() local 58 …ecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes); in init() 61 …ecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes); in init()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/ |
D | BMPImageDecoder.cpp | 46 size_t maxDecodedBytes) in BMPImageDecoder() argument 47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in BMPImageDecoder()
|
D | BMPImageDecoder.h | 42 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
D | PNGImageDecoder.h | 41 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
|
D | PNGImageDecoder.cpp | 222 size_t maxDecodedBytes) in PNGImageDecoder() argument 223 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in PNGImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/ |
D | GIFImageDecoder.h | 43 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
|
D | GIFImageDecoder.cpp | 39 size_t maxDecodedBytes) in GIFImageDecoder() argument 40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in GIFImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
D | WEBPImageDecoder.h | 41 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
|
D | WEBPImageDecoder.cpp | 130 size_t maxDecodedBytes) in WEBPImageDecoder() argument 131 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in WEBPImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/ |
D | ICOImageDecoder.h | 43 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
|
D | ICOImageDecoder.cpp | 50 size_t maxDecodedBytes) in ICOImageDecoder() argument 51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in ICOImageDecoder()
|