Home
last modified time | relevance | path

Searched refs:CompositeAnimation (Results 1 – 23 of 23) sorted by relevance

/external/webkit/Source/WebCore/page/animation/
DCompositeAnimation.h48 class CompositeAnimation : public RefCounted<CompositeAnimation> {
50 static PassRefPtr<CompositeAnimation> create(AnimationControllerPrivate* animationController) in create()
52 return adoptRef(new CompositeAnimation(animationController)); in create()
55 ~CompositeAnimation();
87 CompositeAnimation(AnimationControllerPrivate* animationController) in CompositeAnimation() function
DCompositeAnimation.cpp44 CompositeAnimation::~CompositeAnimation() in ~CompositeAnimation()
54 void CompositeAnimation::clearRenderer() in clearRenderer()
77 void CompositeAnimation::updateTransitions(RenderObject* renderer, RenderStyle* currentStyle, Rende… in updateTransitions()
195 void CompositeAnimation::updateKeyframeAnimations(RenderObject* renderer, RenderStyle* currentStyle… in updateKeyframeAnimations()
277 PassRefPtr<RenderStyle> CompositeAnimation::animate(RenderObject* renderer, RenderStyle* currentSty… in animate()
309 PassRefPtr<RenderStyle> CompositeAnimation::getAnimatedStyle() const in getAnimatedStyle()
330 void CompositeAnimation::setAnimating(bool animating) in setAnimating()
349 double CompositeAnimation::timeToNextService() const in timeToNextService()
382 PassRefPtr<KeyframeAnimation> CompositeAnimation::getAnimationForProperty(int property) const in getAnimationForProperty()
401 void CompositeAnimation::suspendAnimations() in suspendAnimations()
[all …]
DAnimationController.cpp66 PassRefPtr<CompositeAnimation> AnimationControllerPrivate::accessCompositeAnimation(RenderObject* r… in accessCompositeAnimation()
68 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); in accessCompositeAnimation()
70 animation = CompositeAnimation::create(this); in accessCompositeAnimation()
80 PassRefPtr<CompositeAnimation> animation = m_compositeAnimations.take(renderer); in clear()
94 CompositeAnimation* compAnim = it->second.get(); in updateAnimationTimer()
214 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); in isRunningAnimationOnRenderer()
223 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); in isRunningAcceleratedAnimationOnRenderer()
256 CompositeAnimation* compAnim = it->second.get(); in suspendAnimationsForDocument()
272 CompositeAnimation* compAnim = it->second.get(); in resumeAnimationsForDocument()
285 RefPtr<CompositeAnimation> compAnim = accessCompositeAnimation(renderer); in pauseAnimationAtTime()
[all …]
DAnimationBase.h42 class CompositeAnimation; variable
50 friend class CompositeAnimation; variable
53 … AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
131 …virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* /*currentStyle*/, Rend…
195 CompositeAnimation* compositeAnimation() { return m_compAnim; } in compositeAnimation()
233 CompositeAnimation* m_compAnim;
DImplicitAnimation.h41 …imation* animation, int animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAn… in create()
54 …virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderSt…
81 …ImplicitAnimation(const Animation*, int animatingProperty, RenderObject*, CompositeAnimation*, Ren…
DKeyframeAnimation.h44 …ate(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compositeAn… in create()
49 …virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderSt…
82 …KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, Rende…
DAnimationControllerPrivate.h45 class CompositeAnimation; variable
62 PassRefPtr<CompositeAnimation> accessCompositeAnimation(RenderObject*);
109 typedef HashMap<RenderObject*, RefPtr<CompositeAnimation> > RenderObjectAnimationMap;
DImplicitAnimation.cpp43 …mation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, R… in ImplicitAnimation()
66 void ImplicitAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle… in animate() argument
DKeyframeAnimation.cpp46 …ion(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, R… in KeyframeAnimation()
147 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle… in animate() argument
DAnimationBase.cpp793 …e::AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim) in AnimationBase()
1216 RefPtr<CompositeAnimation> compProtector(m_compAnim); in fireAnimationEventsIfNeeded()
/external/webkit/Source/WebCore/
DChangeLog-2009-06-16160 * page/animation/CompositeAnimation.cpp:
161 (WebCore::CompositeAnimation::updateTransitions):
21857 * page/animation/CompositeAnimation.cpp:
21858 (WebCore::CompositeAnimation::updateTransitions):
21859 (WebCore::CompositeAnimation::animate):
21860 (WebCore::CompositeAnimation::cleanupFinishedAnimations):
21861 * page/animation/CompositeAnimation.h:
22653 * page/animation/CompositeAnimation.cpp:
22654 (WebCore::CompositeAnimation::~CompositeAnimation):
22655 (WebCore::CompositeAnimation::clearRenderer):
[all …]
DAndroid.mk535 page/animation/CompositeAnimation.cpp \
DWebCore.pro899 page/animation/CompositeAnimation.cpp \
1848 page/animation/CompositeAnimation.h \
DChangeLog-2010-01-291698 * page/animation/CompositeAnimation.cpp:
1699 (WebCore::CompositeAnimation::clearRenderer):
1700 (WebCore::CompositeAnimation::updateKeyframeAnimations):
1701 (WebCore::CompositeAnimation::animate):
1702 (WebCore::CompositeAnimation::getAnimatedStyle):
1703 (WebCore::CompositeAnimation::setAnimating):
1704 (WebCore::CompositeAnimation::timeToNextService):
1705 (WebCore::CompositeAnimation::getAnimationForProperty):
1706 (WebCore::CompositeAnimation::suspendAnimations):
1707 (WebCore::CompositeAnimation::resumeAnimations):
[all …]
DCMakeLists.txt1044 page/animation/CompositeAnimation.cpp
DChangeLog-2010-05-2417669CompositeAnimation::updateKeyframeAnimations() can make a KeyframeAnimation for animation "none"
17675 * page/animation/CompositeAnimation.cpp:
17676 (WebCore::CompositeAnimation::updateKeyframeAnimations):
31348 * page/animation/CompositeAnimation.cpp:
31349 (WebCore::CompositeAnimation::clearRenderer):
31350 (WebCore::CompositeAnimation::updateKeyframeAnimations):
31351 (WebCore::CompositeAnimation::getAnimatedStyle):
31352 (WebCore::CompositeAnimation::setAnimating):
31353 (WebCore::CompositeAnimation::timeToNextService):
31354 (WebCore::CompositeAnimation::getAnimationForProperty):
[all …]
DChangeLog5110 CompositeAnimation was replacing any existing
5119 * page/animation/CompositeAnimation.cpp:
5120 (WebCore::CompositeAnimation::updateTransitions):
24232 CompositeAnimation is cleared while an AnimationBase is waiting for notification
24237 the RenderObject had gone away and hence the CompositeAnimation
24239 when the CompositeAnimation destructor runs (or its animations are
24240 cleared) and test the validity of the CompositeAnimation before it
24249 - test that the CompositeAnimation exists
24252 - rename clearRenderer() to clear() as it now also clears the CompositeAnimation
24253 * page/animation/CompositeAnimation.cpp:
[all …]
DGNUmakefile.list.am2159 Source/WebCore/page/animation/CompositeAnimation.cpp \
2160 Source/WebCore/page/animation/CompositeAnimation.h \
DGNUmakefile.am2175 Source/WebCore/page/animation/CompositeAnimation.cpp \
2176 Source/WebCore/page/animation/CompositeAnimation.h \
DWebCore.gypi3496 'page/animation/CompositeAnimation.cpp',
3497 'page/animation/CompositeAnimation.h',
DChangeLog-2010-12-0620656 * page/animation/CompositeAnimation.cpp:
20657 (WebCore::CompositeAnimation::updateKeyframeAnimations):
20658 (WebCore::CompositeAnimation::suspendAnimations):
20659 (WebCore::CompositeAnimation::resumeAnimations):
20660 * page/animation/CompositeAnimation.h:
20661 (WebCore::CompositeAnimation::suspended):
20662 (WebCore::CompositeAnimation::CompositeAnimation):
81649 * page/animation/CompositeAnimation.h:
98136 * page/animation/CompositeAnimation.h:
98140 * page/animation/CompositeAnimation.cpp:
[all …]
DChangeLog-2011-02-1645845 * page/animation/CompositeAnimation.cpp:
45846 (WebCore::CompositeAnimation::pauseTransitionAtTime): If we don't find the
/external/webkit/Source/WebCore/WebCore.xcodeproj/
Dproject.pbxproj784 …6E1DA700BF6088 /* CompositeAnimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316FE10B0E…
785 …E6E1DA700BF6088 /* CompositeAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 316FE10C0E6…
7274CompositeAnimation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcec…
7275CompositeAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecod…
13499 316FE10B0E6E1DA700BF6088 /* CompositeAnimation.cpp */,
13500 316FE10C0E6E1DA700BF6088 /* CompositeAnimation.h */,
20085 316FE1160E6E1DA700BF6088 /* CompositeAnimation.h in Headers */,
23449 316FE1150E6E1DA700BF6088 /* CompositeAnimation.cpp in Sources */,