Searched defs:m_animations (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/page/
H A DWebKitAnimationList.h56 Vector<RefPtr<WebKitAnimation> > m_animations; member in class:WebCore::WebKitAnimationList
/external/webkit/Source/WebCore/platform/animation/
H A DAnimationList.h47 size_t size() const { return m_animations.size(); }
48 bool isEmpty() const { return m_animations.isEmpty(); }
50 void resize(size_t n) { m_animations.resize(n); }
51 void remove(size_t i) { m_animations.remove(i); }
52 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); }
54 Animation* animation(size_t i) { return m_animations[i].get(); }
55 const Animation* animation(size_t i) const { return m_animations[i].get(); }
60 Vector<RefPtr<Animation> > m_animations; member in class:WebCore::AnimationList
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DPlatformCALayer.h205 HashMap<String, RefPtr<PlatformCAAnimation> > m_animations; member in class:WebCore::PlatformCALayer
/external/webkit/Source/WebCore/rendering/style/
H A DStyleRareNonInheritedData.h118 OwnPtr<AnimationList> m_animations; member in class:WebCore::StyleRareNonInheritedData
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.h280 || m_animations.size()
315 return contentIsScrollable() || isPositionFixed() || (m_animations.size() != 0);
353 KeyframesMap m_animations; member in class:WebCore::LayerAndroid
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.cpp275 QList<QWeakPointer<QAbstractAnimation> > m_animations; member in class:WebCore::GraphicsLayerQtImpl
369 for (it = m_animations.begin(); it != m_animations.end(); ++it)
1639 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) {
1662 m_impl->m_animations.append(QWeakPointer<QAbstractAnimation>(newAnim));
1687 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) {
1696 it = m_impl->m_animations.erase(it);
1705 for (it = m_impl->m_animations
[all...]

Completed in 183 milliseconds