Searched refs:Animation (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSToStyleMap.h32 class Animation;
57 void mapAnimationDelay(Animation*, CSSValue*);
58 void mapAnimationDirection(Animation*, CSSValue*);
59 void mapAnimationDuration(Animation*, CSSValue*);
60 void mapAnimationFillMode(Animation*, CSSValue*);
61 void mapAnimationIterationCount(Animation*, CSSValue*);
62 void mapAnimationName(Animation*, CSSValue*);
63 void mapAnimationPlayState(Animation*, CSSValue*);
64 void mapAnimationProperty(Animation*, CSSValue*);
65 void mapAnimationTimingFunction(Animation*, CSSValu
[all...]
H A DCSSToStyleMap.cpp31 #include "Animation.h"
302 void CSSToStyleMap::mapAnimationDelay(Animation* animation, CSSValue* value)
305 animation->setDelay(Animation::initialAnimationDelay());
316 void CSSToStyleMap::mapAnimationDirection(Animation* layer, CSSValue* value)
319 layer->setDirection(Animation::initialAnimationDirection());
329 layer->setDirection(Animation::AnimationDirectionNormal);
332 layer->setDirection(Animation::AnimationDirectionAlternate);
335 layer->setDirection(Animation::AnimationDirectionReverse);
338 layer->setDirection(Animation::AnimationDirectionAlternateReverse);
343 void CSSToStyleMap::mapAnimationDuration(Animation* animatio
[all...]
H A DDeprecatedStyleBuilder.cpp1621 T (Animation::*getterFunction)() const,
1622 void (Animation::*setterFunction)(T),
1623 bool (Animation::*testFunction)() const,
1624 void (Animation::*clearFunction)(),
1626 void (CSSToStyleMap::*mapFunction)(Animation*, CSSValue*),
1631 static void setValue(Animation* animation, T value) { (animation->*setterFunction)(value); }
1632 static T value(const Animation* animation) { return (animation->*getterFunction)(); }
1633 static bool test(const Animation* animation) { return (animation->*testFunction)(); }
1634 static void clear(Animation* animation) { (animation->*clearFunction)(); }
1636 static void map(StyleResolver* styleResolver, Animation* animatio
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/animation/
H A DAnimation.h37 class Animation : public RefCounted<Animation> { class in namespace:WebCore
39 ~Animation();
41 static PassRefPtr<Animation> create() { return adoptRef(new Animation); }
42 static PassRefPtr<Animation> create(const Animation* o) { return adoptRef(new Animation(*o)); }
56 // We can make placeholder Animation objects to keep the comma-separated lists
137 Animation
[all...]
H A DAnimationList.h28 #include "Animation.h"
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;
H A DAnimation.cpp23 #include "Animation.h"
27 Animation::Animation() function in class:WebCore::Animation
51 Animation::Animation(const Animation& o) function in class:WebCore::Animation
52 : RefCounted<Animation>()
76 Animation& Animation::operator=(const Animation
[all...]
H A DAnimationList.cpp37 m_animations.append(Animation::create(o.animation(i)));
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebAnimation_p.h24 #include "Animation.h"
45 RefPtr<WebCore::Animation> animation;
H A DWebAnimation.cpp42 tmp.d->animation = Animation::create();
55 tmp.d->animation = Animation::create();
H A DWebOverlay_p.h40 class Animation;
90 virtual void addAnimation(const WTF::String& name, WebCore::Animation*, const WebCore::KeyframeValueList&) = 0;
149 virtual void addAnimation(const WTF::String& name, WebCore::Animation*, const WebCore::KeyframeValueList&);
239 virtual void addAnimation(const WTF::String& name, WebCore::Animation*, const WebCore::KeyframeValueList&);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/clutter/
H A DGraphicsLayerClutter.h93 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
129 PassRefPtr<PlatformClutterAnimation> createBasicAnimation(const Animation*, const String& keyPath, bool additive);
130 PassRefPtr<PlatformClutterAnimation> createKeyframeAnimation(const Animation*, const String&, bool additive);
131 void setupAnimation(PlatformClutterAnimation*, const Animation*, bool additive);
133 const TimingFunction* timingFunctionForAnimationValue(const AnimationValue&, const Animation&);
135 bool setAnimationEndpoints(const KeyframeValueList&, const Animation*, PlatformClutterAnimation*);
136 bool setAnimationKeyframes(const KeyframeValueList&, const Animation*, PlatformClutterAnimation*);
142 bool createAnimationFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
143 bool createTransformAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset, const IntSize& boxSize);
145 bool setTransformAnimationEndpoints(const KeyframeValueList&, const Animation*, PlatformClutterAnimatio
[all...]
H A DGraphicsLayerClutter.cpp33 #include "Animation.h"
224 static bool animationHasStepsTimingFunction(const KeyframeValueList& valueList, const Animation* anim)
979 void GraphicsLayerClutter::setupAnimation(PlatformClutterAnimation* propertyAnim, const Animation* anim, bool additive)
986 if (repeatCount == Animation::IterationCountInfinite)
988 else if (anim->direction() == Animation::AnimationDirectionAlternate || anim->direction() == Animation::AnimationDirectionAlternateReverse)
1009 propertyAnim->setAutoreverses(anim->direction() == Animation::AnimationDirectionAlternate || anim->direction() == Animation::AnimationDirectionAlternateReverse);
1015 const TimingFunction* GraphicsLayerClutter::timingFunctionForAnimationValue(const AnimationValue& animValue, const Animation& anim)
1025 PassRefPtr<PlatformClutterAnimation> GraphicsLayerClutter::createBasicAnimation(const Animation* ani
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DLayerAnimation.h33 class Animation;
41 static PassRefPtr<LayerAnimation> create(const KeyframeValueList& values, const IntSize& boxSize, const Animation* animation, const String& name, double timeOffset)
69 static int idFromAnimation(const Animation* animation) { return reinterpret_cast<int>(animation); }
70 bool isEqualToAnimation(const Animation* animation) const { return idFromAnimation(animation) == id(); }
80 Animation::AnimationDirection direction() const { return m_direction; }
89 LayerAnimation(const KeyframeValueList& values, const IntSize& boxSize, const Animation* animation, const String& name, double timeOffset)
149 Animation::AnimationDirection m_direction;
H A DLayerAnimation.cpp100 if ((layerAnimation->direction() == Animation::AnimationDirectionAlternate) && (integralTime & 1))
125 if (layerAnimation->duration() && layerAnimation->iterationCount() != Animation::IterationCountInfinite)
140 if (layerAnimation->iterationCount() != Animation::IterationCountInfinite)
145 bool reversing = (layerAnimation->direction() == Animation::AnimationDirectionAlternate) && (iteration & 1);
H A DGraphicsLayerBlackBerry.h99 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DAnimationBase.h32 #include "Animation.h"
56 AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
109 // Animation has actually started, at passed time
144 bool animationsMatch(const Animation*) const;
146 void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); }
193 const Animation* animation() const { return m_animation.get(); }
239 RefPtr<Animation> m_animation;
H A DImplicitAnimation.h42 static PassRefPtr<ImplicitAnimation> create(const Animation* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
85 ImplicitAnimation(const Animation*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
H A DKeyframeAnimation.h44 static PassRefPtr<KeyframeAnimation> create(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle)
87 KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, RenderStyle* unanimatedStyle);
H A DAnimationBase.cpp72 AnimationBase::AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim)
85 , m_animation(const_cast<Animation*>(transition))
110 bool AnimationBase::animationsMatch(const Animation* anim) const
553 if (m_animation->iterationCount() != Animation::IterationCountInfinite && !iterationCountHasFractional)
558 if (((m_animation->direction() == Animation::AnimationDirectionAlternate) && (integralTime & 1))
559 || ((m_animation->direction() == Animation::AnimationDirectionAlternateReverse) && !(integralTime & 1))
560 || m_animation->direction() == Animation::AnimationDirectionReverse)
H A DCompositeAnimation.cpp100 const Animation* anim = targetStyle->transitions()->animation(i);
103 Animation::AnimationMode mode = anim->animationMode();
104 if (mode == Animation::AnimateNone)
109 bool all = mode == Animation::AnimateAll;
177 RefPtr<ImplicitAnimation> animation = ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle);
237 const Animation* anim = targetStyle->animations()->animation(i);
260 keyframeAnim = KeyframeAnimation::create(const_cast<Animation*>(anim), renderer, i, this, targetStyle);
511 if ((t >= 0.0) && ((count == Animation::IterationCountInfinite) || (t <= count * keyframeAnim->duration()))) {
H A DKeyframeAnimation.cpp45 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
70 static const Animation* getAnimationFromStyleByName(const RenderStyle* style, const AtomicString& name)
87 if (m_animation->duration() && m_animation->iterationCount() != Animation::IterationCountInfinite)
136 if (const Animation* matchedAnimation = getAnimationFromStyleByName(fromStyle, name()))
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsLayerAnimation.h47 GraphicsLayerAnimation(const String&, const KeyframeValueList&, const IntSize&, const Animation*, double, bool);
64 PassRefPtr<Animation> animation() const { return m_animation.get(); }
72 RefPtr<Animation> m_animation;
H A DGraphicsLayerAnimation.cpp79 static bool shouldReverseAnimationValue(Animation::AnimationDirection direction, int loopCount)
81 if (((direction == Animation::AnimationDirectionAlternate) && (loopCount & 1))
82 || ((direction == Animation::AnimationDirectionAlternateReverse) && !(loopCount & 1))
83 || direction == Animation::AnimationDirectionReverse)
88 static double normalizedAnimationValue(double runningTime, double duration, Animation::AnimationDirection direction, double iterationCount)
102 static double normalizedAnimationValueForFillsForwards(double iterationCount, Animation::AnimationDirection direction)
104 if (direction == Animation::AnimationDirectionNormal)
106 if (direction == Animation::AnimationDirectionReverse)
183 // Animation to "-webkit-transform: none".
191 // Animation fro
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/
H A DGraphicsLayerCA.h112 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
199 bool createAnimationFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
200 bool createTransformAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset, const IntSize& boxSize);
202 bool createFilterAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
206 PassRefPtr<PlatformCAAnimation> createBasicAnimation(const Animation*, const String& keyPath, bool additive);
207 PassRefPtr<PlatformCAAnimation> createKeyframeAnimation(const Animation*, const String&, bool additive);
208 void setupAnimation(PlatformCAAnimation*, const Animation*, bool additive);
210 const TimingFunction* timingFunctionForAnimationValue(const AnimationValue&, const Animation&);
212 bool setAnimationEndpoints(const KeyframeValueList&, const Animation*, PlatformCAAnimation*);
213 bool setAnimationKeyframes(const KeyframeValueList&, const Animation*, PlatformCAAnimatio
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.h83 virtual bool addAnimation(const KeyframeValueList&, const IntSize&, const Animation*, const String&, double);

Completed in 225 milliseconds

12