Home
last modified time | relevance | path

Searched refs:m_frameCount (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/page/
DPage.h163 void incrementFrameCount() { ++m_frameCount; } in incrementFrameCount()
164 void decrementFrameCount() { ASSERT(m_frameCount); --m_frameCount; } in decrementFrameCount()
165 int frameCount() const { checkFrameCountConsistency(); return m_frameCount; } in frameCount()
358 int m_frameCount; variable
DPage.cpp162 , m_frameCount(0) in Page()
950 ASSERT(m_frameCount >= 0); in checkFrameCountConsistency()
956 ASSERT(m_frameCount + 1 == frameCount); in checkFrameCountConsistency()
/external/webkit/Source/WebCore/platform/graphics/openvg/
DImageOpenVG.cpp71 , m_frameCount(1) in BitmapImage()
91 if (m_frameCount == 1 && m_size.width() == 1 && m_size.height() == 1) in checkForSolidColor()
/external/webkit/Source/WebCore/platform/graphics/
DBitmapImage.cpp65 , m_frameCount(0) in BitmapImage()
225 m_frameCount = m_source.frameCount(); in frameCount()
228 return m_frameCount; in frameCount()
DBitmapImage.h301 size_t m_frameCount;
/external/webkit/Source/WebCore/platform/graphics/cairo/
DImageCairo.cpp78 , m_frameCount(1) in BitmapImage()
/external/webkit/Source/WebCore/platform/graphics/qt/
DImageQt.cpp179 , m_frameCount(1) in BitmapImage()
/external/webkit/Source/WebCore/platform/graphics/android/
DImageAndroid.cpp91 , m_frameCount(1) in BitmapImage()
/external/webkit/Source/WebCore/platform/graphics/cg/
DImageCG.cpp84 , m_frameCount(1) in BitmapImage()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-1014061 (WebCore::Page::Page): Initialize m_frameCount to 0.