/external/webkit/Source/WebCore/platform/image-decoders/ |
D | ImageDecoder.cpp | 101 ImageDecoder* ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, … in create() argument 110 return new GIFImageDecoder(alphaOption, gammaAndColorProfileOption); in create() 113 return new PNGImageDecoder(alphaOption, gammaAndColorProfileOption); in create() 116 return new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption); in create() 120 return new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption); in create() 124 return new BMPImageDecoder(alphaOption, gammaAndColorProfileOption); in create() 127 return new ICOImageDecoder(alphaOption, gammaAndColorProfileOption); in create()
|
D | ImageDecoder.h | 227 …ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAn… in ImageDecoder() argument 229 , m_premultiplyAlpha(alphaOption == ImageSource::AlphaPremultiplied) in ImageDecoder()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | ImageDecoderQt.cpp | 40 ImageDecoder* ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, … in create() argument 46 return new ImageDecoderQt(alphaOption, gammaAndColorProfileOption); in create() 49 ImageDecoderQt::ImageDecoderQt(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProf… in ImageDecoderQt() argument 50 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in ImageDecoderQt()
|
/external/webkit/Source/WebCore/platform/image-decoders/bmp/ |
D | BMPImageDecoder.cpp | 43 BMPImageDecoder::BMPImageDecoder(ImageSource::AlphaOption alphaOption, in BMPImageDecoder() argument 45 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in BMPImageDecoder()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | ImageSource.cpp | 44 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOpt… in ImageSource() argument 46 , m_alphaOption(alphaOption) in ImageSource()
|
D | ImageSource.h | 152 …ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColor…
|
/external/webkit/Source/WebCore/platform/image-decoders/webp/ |
D | WEBPImageDecoder.cpp | 38 WEBPImageDecoder::WEBPImageDecoder(ImageSource::AlphaOption alphaOption, in WEBPImageDecoder() argument 40 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in WEBPImageDecoder()
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | ImageSourceCG.cpp | 71 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOpt… in ImageSource() argument 74 , m_alphaOption(alphaOption) in ImageSource()
|
/external/webkit/Source/WebCore/platform/image-decoders/ico/ |
D | ICOImageDecoder.cpp | 47 ICOImageDecoder::ICOImageDecoder(ImageSource::AlphaOption alphaOption, in ICOImageDecoder() argument 49 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in ICOImageDecoder()
|
/external/webkit/Source/WebCore/platform/image-decoders/png/ |
D | PNGImageDecoder.cpp | 172 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption, in PNGImageDecoder() argument 174 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in PNGImageDecoder()
|
/external/webkit/Source/WebCore/platform/image-decoders/gif/ |
D | GIFImageDecoder.cpp | 32 GIFImageDecoder::GIFImageDecoder(ImageSource::AlphaOption alphaOption, in GIFImageDecoder() argument 34 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in GIFImageDecoder()
|
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/ |
D | JPEGImageDecoder.cpp | 407 JPEGImageDecoder::JPEGImageDecoder(ImageSource::AlphaOption alphaOption, in JPEGImageDecoder() argument 409 : ImageDecoder(alphaOption, gammaAndColorProfileOption) in JPEGImageDecoder()
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | ImageSourceAndroid.cpp | 133 ImageSource::ImageSource(AlphaOption alphaOption, GammaAndColorProfileOption gammaAndColorProfileOp… in ImageSource() argument 134 : m_alphaOption(alphaOption) in ImageSource()
|