Searched defs:Animation (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/platform/animation/
H A DAnimation.cpp23 #include "Animation.h"
27 Animation::Animation() function in class:WebCore::Animation
50 Animation::Animation(const Animation& o) function in class:WebCore::Animation
51 : RefCounted<Animation>()
74 Animation& Animation::operator=(const Animation
[all...]
H A DAnimation.h39 class Animation : public RefCounted<Animation> { class in namespace:WebCore
41 ~Animation();
43 static PassRefPtr<Animation> create() { return adoptRef(new Animation); }
44 static PassRefPtr<Animation> create(const Animation* o) { return adoptRef(new Animation(*o)); }
58 // We can make placeholder Animation objects to keep the comma-separated lists
112 Animation
[all...]
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.h86 virtual bool addAnimation(const KeyframeValueList&, const IntSize& /*boxSize*/, const Animation*, const String& /*keyframesName*/, double /*timeOffset*/) { return false; } argument
/external/replicaisland/src/com/replica/replicaisland/
H A DGenericAnimationComponent.java43 mSprite.playAnimation(Animation.IDLE);
46 mSprite.playAnimation(Animation.MOVE);
49 mSprite.playAnimation(Animation.ATTACK);
52 mSprite.playAnimation(Animation.HIT_REACT);
55 mSprite.playAnimation(Animation.DEATH);
58 mSprite.playAnimation(Animation.HIDE);
61 mSprite.playAnimation(Animation.FROZEN);
76 public static final class Animation { class in class:GenericAnimationComponent
H A DButtonAnimationComponent.java22 public static final class Animation { class in class:ButtonAnimationComponent
54 if (mSprite.getCurrentAnimation() == Animation.UP) {
60 mSprite.playAnimation(Animation.DOWN);
68 mSprite.playAnimation(Animation.UP);
H A DDoorAnimationComponent.java23 public static final class Animation { class in class:DoorAnimationComponent
66 final float openAnimationLength = mSprite.findAnimation(Animation.OPENING).getLength();
72 mSprite.playAnimation(Animation.OPEN);
92 mSprite.playAnimation(Animation.OPENING);
107 final float closeAnimationLength = mSprite.findAnimation(Animation.CLOSING).getLength();
111 mSprite.playAnimation(Animation.CLOSED);
123 mSprite.playAnimation(Animation.CLOSING);
158 mSprite.playAnimation(Animation.OPEN);
161 mSprite.playAnimation(Animation.CLOSED);
171 if (mSprite.getCurrentAnimation() == Animation
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimation.java43 public class Animation implements Savable, Cloneable { class in inherits:Savable,Cloneable
63 public Animation() {} method in class:Animation
66 * Creates a new <code>Animation</code> with the given name and length.
71 public Animation(String name, float length) { method in class:Animation
169 public Animation clone() {
171 Animation result = (Animation) super.clone();
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsLayer.h31 #include "Animation.h"
304 virtual bool addAnimation(const KeyframeValueList&, const IntSize& /*boxSize*/, const Animation*, const String& /*animationName*/, double /*timeOffset*/) { return false; } argument

Completed in 98 milliseconds