Home
last modified time | relevance | path

Searched refs:m_animations (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/page/
DWebKitAnimationList.cpp46 return m_animations.size(); in length()
51 if (index < m_animations.size()) in item()
52 return m_animations[index].get(); in item()
58 if (index >= m_animations.size()) in deleteAnimation()
61 m_animations.remove(index); in deleteAnimation()
66 m_animations.append(animation); in append()
74 if (index > m_animations.size()) in insertAnimation()
77 m_animations.insert(index, animation); in insertAnimation()
DWebKitAnimationList.h56 Vector<RefPtr<WebKitAnimation> > m_animations; variable
/external/webkit/Source/WebCore/platform/animation/
DAnimationList.h47 size_t size() const { return m_animations.size(); } in size()
48 bool isEmpty() const { return m_animations.isEmpty(); } in isEmpty()
50 void resize(size_t n) { m_animations.resize(n); } in resize()
51 void remove(size_t i) { m_animations.remove(i); } in remove()
52 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); } in append()
54 Animation* animation(size_t i) { return m_animations[i].get(); } in animation()
55 const Animation* animation(size_t i) const { return m_animations[i].get(); } in animation()
60 Vector<RefPtr<Animation> > m_animations; variable
DAnimationList.cpp37 m_animations.append(Animation::create(o.animation(i))); in AnimationList()
/external/webkit/Source/WebCore/rendering/style/
DStyleRareNonInheritedData.cpp53 , m_animations(0) in StyleRareNonInheritedData()
91 , m_animations(o.m_animations ? new AnimationList(*o.m_animations) : 0) in StyleRareNonInheritedData()
188 if ((!m_animations && o.m_animations) || (m_animations && !o.m_animations)) in animationDataEquivalent()
190 if (m_animations && o.m_animations && (*m_animations != *o.m_animations)) in animationDataEquivalent()
DStyleRareNonInheritedData.h118 OwnPtr<AnimationList> m_animations; variable
DRenderStyle.cpp940 AnimationList* animationList = rareNonInheritedData->m_animations.get(); in adjustAnimations()
998 if (!rareNonInheritedData.access()->m_animations) in accessAnimations()
999 rareNonInheritedData.access()->m_animations.set(new AnimationList()); in accessAnimations()
1000 return rareNonInheritedData->m_animations.get(); in accessAnimations()
DRenderStyle.h749 const AnimationList* animations() const { return rareNonInheritedData->m_animations.get(); } in animations()
755 …sAnimations() const { return rareNonInheritedData->m_animations && rareNonInheritedData->m_animati… in hasAnimations()
1101 rareNonInheritedData.access()->m_animations.clear(); in clearAnimations()
1109 …mations(const AnimationList* parent) { rareNonInheritedData.access()->m_animations = parent ? adop… in inheritAnimations()
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DLayerAndroid.cpp174 KeyframesMap::const_iterator end = layer.m_animations.end(); in LayerAndroid()
175 for (KeyframesMap::const_iterator it = layer.m_animations.begin(); it != end; ++it) { in LayerAndroid()
178 m_animations.add(newKey, it->second); in LayerAndroid()
206 m_animations.clear(); in ~LayerAndroid()
236 return !!m_animations.size(); in hasAnimations()
249 KeyframesMap::const_iterator end = m_animations.end(); in evaluateAnimations()
250 for (KeyframesMap::const_iterator it = m_animations.begin(); it != end; ++it) { in evaluateAnimations()
265 KeyframesMap::const_iterator localBegin = m_animations.begin(); in initAnimations()
266 KeyframesMap::const_iterator localEnd = m_animations.end(); in initAnimations()
304 m_animations.add(key, anim); in addAnimation()
[all …]
DLayerAndroid.h280 || m_animations.size() in needsIsolatedSurface()
315 return contentIsScrollable() || isPositionFixed() || (m_animations.size() != 0); in hasDynamicTransform()
353 KeyframesMap m_animations; variable
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsLayerQt.cpp275 QList<QWeakPointer<QAbstractAnimation> > m_animations; member in WebCore::GraphicsLayerQtImpl
369 for (it = m_animations.begin(); it != m_animations.end(); ++it) in ~GraphicsLayerQtImpl()
1639 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) { in addAnimation()
1662 m_impl->m_animations.append(QWeakPointer<QAbstractAnimation>(newAnim)); in addAnimation()
1687 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) { in removeAnimationsForProperty()
1696 it = m_impl->m_animations.erase(it); in removeAnimationsForProperty()
1705 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) { in removeAnimationsForKeyframes()
1714 it = m_impl->m_animations.erase(it); in removeAnimationsForKeyframes()
1723 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) { in pauseAnimation()
1743 for (it = m_impl->m_animations.begin(); it != m_impl->m_animations.end(); ++it) { in suspendAnimations()
[all …]
/external/webkit/Source/WebCore/platform/graphics/ca/win/
DPlatformCALayerWin.cpp266 m_animations.add(key, animation); in addAnimationForKey()
281 m_animations.remove(key); in removeAnimationForKey()
295 HashMap<String, RefPtr<PlatformCAAnimation> >::iterator it = m_animations.find(key); in animationForKey()
296 if (it == m_animations.end()) in animationForKey()
/external/webkit/Source/WebCore/platform/graphics/ca/
DPlatformCALayer.h205 HashMap<String, RefPtr<PlatformCAAnimation> > m_animations; variable
/external/webkit/Source/WebCore/
DChangeLog-2008-08-10344 (m_animations and m_transitions were never deleted)