/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
D | ImageDecoder.cpp | 85 …mageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::G… in create() argument 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 …ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAn… in ImageDecoder() argument 75 : m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied) in ImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/ |
D | BMPImageDecoder.cpp | 44 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption, in BMPImageDecoder() argument 47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in BMPImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | ImageSource.cpp | 36 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOpt… in ImageSource() argument 37 : m_alphaOption(alphaOption) in ImageSource()
|
D | ImageSource.h | 75 …ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColor…
|
D | DeferredImageDecoder.cpp | 60 …mageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::G… in create() argument 62 … OwnPtr<ImageDecoder> actualDecoder = ImageDecoder::create(data, alphaOption, gammaAndColorOption); in create()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/ |
D | ICOImageDecoder.cpp | 48 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption, in ICOImageDecoder() argument 51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in ICOImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/ |
D | GIFImageDecoder.cpp | 37 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption, in GIFImageDecoder() argument 40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in GIFImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
D | WEBPImageDecoder.cpp | 128 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption, in WEBPImageDecoder() argument 131 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in WEBPImageDecoder() 147 …m_blendFunction = (alphaOption == ImageSource::AlphaPremultiplied) ? alphaBlendPremultiplied : alp… in WEBPImageDecoder()
|
D | WEBPImageDecoderTest.cpp | 60 PassOwnPtr<WEBPImageDecoder> createDecoder(ImageSource::AlphaOption alphaOption = ImageSource::Alph… in createDecoder() argument 62 …return adoptPtr(new WEBPImageDecoder(alphaOption, ImageSource::GammaAndColorProfileApplied, ImageD… in createDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
D | PNGImageDecoder.cpp | 220 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption, in PNGImageDecoder() argument 223 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in PNGImageDecoder()
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
D | JPEGImageDecoder.cpp | 683 JPEGImageDecoder::JPEGImageDecoder(ImageSource::AlphaOption alphaOption, in JPEGImageDecoder() argument 686 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in JPEGImageDecoder()
|