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

  /external/webkit/WebCore/loader/
CachedResource.cpp 71 m_decodedSize = 0;
227 if (size == m_decodedSize)
230 int delta = size - m_decodedSize;
233 // We have to remove explicitly before updating m_decodedSize, so that we find the correct previous
238 m_decodedSize = size;
251 if (m_decodedSize && !m_inLiveDecodedResourcesList && hasClients())
253 else if (!m_decodedSize && m_inLiveDecodedResourcesList)
CachedResource.h 114 unsigned decodedSize() const { return m_decodedSize; }
221 unsigned m_decodedSize;
  /external/webkit/WebCore/platform/graphics/
BitmapImage.cpp 62 , m_decodedSize(0)
108 m_decodedSize += deltaBytes;
116 ASSERT(m_decodedSize == 0 || numFrames > 1);
136 m_decodedSize += deltaBytes;
BitmapImage.h 131 virtual unsigned decodedSize() const { return m_decodedSize; }
280 unsigned m_decodedSize; // The current size of all decoded frames.
  /external/webkit/WebCore/platform/graphics/qt/
ImageQt.cpp 137 , m_decodedSize(0)
145 m_decodedSize = width * height * 4;
  /external/webkit/WebCore/platform/graphics/cairo/
ImageCairo.cpp 72 , m_decodedSize(0)
82 m_decodedSize = width * height * 4;
  /external/webkit/WebCore/platform/graphics/cg/
ImageCG.cpp 82 , m_decodedSize(0)
90 m_decodedSize = width * height * 4;
  /external/webkit/WebCore/platform/graphics/android/
ImageAndroid.cpp 89 , m_decodedSize(0)

Completed in 86 milliseconds