OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxDecodedBytes
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/
WebImageDecoder.cpp
54
size_t
maxDecodedBytes
= Platform::current()->maxDecodedImageBytes();
58
m_private = new BMPImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied,
maxDecodedBytes
);
61
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
74
ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t
maxDecodedBytes
)
77
, 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
222
size_t
maxDecodedBytes
)
223
: 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
);
82
void readYUV(size_t
maxDecodedBytes
, unsigned* outputYWidth, unsigned* outputYHeight, unsigned* outputUVWidth, unsigned* outputUVHeight, const char* imageFilePath)
87
OwnPtr<JPEGImageDecoder> decoder = createDecoder(
maxDecodedBytes
);
JPEGImageDecoder.cpp
685
size_t
maxDecodedBytes
)
686
: ImageDecoder(alphaOption, gammaAndColorProfileOption,
maxDecodedBytes
)
[
all
...]
/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 143 milliseconds