OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:decodedYUVSize
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h
51
virtual IntSize
decodedYUVSize
(int component, SizeType) const OVERRIDE;
JPEGImageDecoderTest.cpp
96
IntSize ySize = decoder->
decodedYUVSize
(0, ImageDecoder::ActualSize);
97
IntSize uSize = decoder->
decodedYUVSize
(1, ImageDecoder::ActualSize);
98
IntSize vSize = decoder->
decodedYUVSize
(2, ImageDecoder::ActualSize);
JPEGImageDecoder.cpp
720
IntSize JPEGImageDecoder::
decodedYUVSize
(int component, ImageDecoder::SizeType sizeType) const
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGenerator.cpp
79
IntSize size = decoder->
decodedYUVSize
(0, sizeType);
81
size = decoder->
decodedYUVSize
(1, sizeType);
83
size = decoder->
decodedYUVSize
(2, sizeType);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
123
virtual IntSize
decodedYUVSize
(int component, SizeType) const { return decodedSize(); }
Completed in 555 milliseconds