HomeSort by relevance Sort by last modified time
    Searched refs:m_decodedSize (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/
BitmapImage.cpp 62 , m_decodedSize(0)
110 m_decodedSize += deltaBytes;
122 ASSERT(m_decodedSize == 0 || numFrames > 1);
142 m_decodedSize += deltaBytes;
154 if (m_decodedSize)
BitmapImage.h 134 virtual unsigned decodedSize() const { return m_decodedSize; }
297 unsigned m_decodedSize; // The current size of all decoded frames.
  /external/webkit/Source/WebCore/loader/cache/
CachedResource.cpp 84 , m_decodedSize(0)
317 if (size == m_decodedSize)
320 int delta = size - m_decodedSize;
323 // We have to remove explicitly before updating m_decodedSize, so that we find the correct previous
328 m_decodedSize = size;
341 if (m_decodedSize && !m_inLiveDecodedResourcesList && hasClients())
343 else if (!m_decodedSize && m_inLiveDecodedResourcesList)
CachedResource.h 123 unsigned decodedSize() const { return m_decodedSize; }
255 unsigned m_decodedSize;
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageCairo.cpp 76 , m_decodedSize(0)
86 m_decodedSize = width * height * 4;
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageQt.cpp 177 , m_decodedSize(0)
185 m_decodedSize = width * height * 4;
  /external/webkit/Source/WebCore/platform/graphics/openvg/
ImageOpenVG.cpp 78 m_decodedSize = m_size.width() * m_size.height() * 4;
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 82 , m_decodedSize(0)
90 m_decodedSize = width * height * 4;
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageAndroid.cpp 88 , m_decodedSize(0)

Completed in 813 milliseconds