HomeSort by relevance Sort by last modified time
    Searched defs:decodedSize (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockImageDecoder.h 42 // Clients can control the behavior of MockImageDecoder::decodedSize() by
44 // MockImageDecoder::decodedSize() to return the same thing as
46 // MockImageDecoder::decodedSize() below.
47 virtual IntSize decodedSize() const { return IntSize(); }
64 virtual IntSize decodedSize() const OVERRIDE
66 return m_client->decodedSize().isEmpty() ? size() : m_client->decodedSize();
118 static PassOwnPtr<MockImageDecoderFactory> create(MockImageDecoderClient* client, const SkISize& decodedSize)
120 return adoptPtr(new MockImageDecoderFactory(client, IntSize(decodedSize.width(), decodedSize.height())))
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebCache.h 56 size_t decodedSize;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImageTest.cpp 83 EXPECT_EQ(0u, decodedSize());
90 size_t decodedSize()
133 size_t totalSize = decodedSize();
150 size_t totalSize = decodedSize();
154 EXPECT_EQ(0u, decodedSize());
194 EXPECT_EQ(227700u, decodedSize());
202 EXPECT_EQ(1024u, decodedSize());
210 EXPECT_EQ(65536u, decodedSize());
218 EXPECT_EQ(1024u, decodedSize());
226 EXPECT_EQ(2560000u, decodedSize());
    [all...]
DeferredImageDecoder.cpp 213 m_frameGenerator = ImageFrameGenerator::create(SkISize::Make(m_actualDecoder->decodedSize().width(), m_actualDecoder->decodedSize().height()), m_data, m_allDataReceived, !isSingleFrame);
265 IntSize decodedSize = m_actualDecoder->decodedSize();
266 ASSERT(decodedSize.width() > 0);
267 ASSERT(decodedSize.height() > 0);
274 const SkImageInfo info = SkImageInfo::Make(decodedSize.width(), decodedSize.height(), colorType, kPremul_SkAlphaType);
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_debugger.cpp 63 size_t decodedSize = 3 * (dataSize / 4);
64 SkDebugf("Got size: %d\n", decodedSize);
69 SkMemoryStream pictureStream(decodedData.getData(), decodedSize);
  /external/skia/platform_tools/nacl/src/
nacl_debugger.cpp 63 size_t decodedSize = 3 * (dataSize / 4);
64 SkDebugf("Got size: %d\n", decodedSize);
69 SkMemoryStream pictureStream(decodedData.getData(), decodedSize);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 119 virtual IntSize decodedSize() const { return size(); }
123 virtual IntSize decodedYUVSize(int component, SizeType) const { return decodedSize(); }
308 // (and then return the downsampled size from decodedSize()). Ignoring
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.h 140 int decodedSize;
150 , decodedSize(0)
Resource.h 153 size_t size() const { return encodedSize() + decodedSize() + overheadSize(); }
155 size_t decodedSize() const { return m_decodedSize; }
  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC2.cpp     [all...]

Completed in 1099 milliseconds