Home
last modified time | relevance | path

Searched refs:m_decodedSize (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
DMockImageDecoder.h131 decoder->setSize(m_decodedSize.width(), m_decodedSize.height()); in create()
139 , m_decodedSize(decodedSize) in MockImageDecoderFactory()
144 IntSize m_decodedSize; variable
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DDeferredImageDecoderTest.cpp88 m_decodedSize = m_actualDecoder->size(); in SetUp()
128 return m_decodedSize; in decodedSize()
134 …er->frameGenerator()->setImageDecoderFactory(MockImageDecoderFactory::create(this, m_decodedSize)); in useMockImageDecoderFactory()
147 IntSize m_decodedSize; member in blink::DeferredImageDecoderTest
312 m_decodedSize = IntSize(22, 33); in TEST_F()
315 EXPECT_EQ(m_decodedSize.width(), image->bitmap().width()); in TEST_F()
316 EXPECT_EQ(m_decodedSize.height(), image->bitmap().height()); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
DJPEGImageDecoder.h50 virtual IntSize decodedSize() const OVERRIDE { return m_decodedSize; } in decodedSize()
79 IntSize m_decodedSize; variable
DJPEGImageDecoder.cpp717 m_decodedSize = IntSize(width, height); in setDecodedSize()
939 ASSERT(info->output_width == static_cast<JDIMENSION>(m_decodedSize.width())); in outputScanlines()
940 ASSERT(info->output_height == static_cast<JDIMENSION>(m_decodedSize.height())); in outputScanlines()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DResource.h155 size_t decodedSize() const { return m_decodedSize; } in decodedSize()
373 size_t m_decodedSize; variable
DResource.cpp105 , m_decodedSize(0) in Resource()
589 if (decodedSize == m_decodedSize) in setDecodedSize()
592 m_decodedSize = decodedSize; in setDecodedSize()