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

/frameworks/rs/
H A DrsAnimation.h28 class Animation : public ObjectBase { class in namespace:android::renderscript
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 Animation(Context *rsc);
/frameworks/support/design/base/android/support/design/widget/
H A DStateListAnimator.java21 import android.view.animation.Animation;
31 private Animation mRunningAnimation = null;
34 private Animation.AnimationListener mAnimationListener = new Animation.AnimationListener() {
36 public void onAnimationEnd(Animation animation) {
43 public void onAnimationStart(Animation animation) {
48 public void onAnimationRepeat(Animation animation) {
54 * Associates the given Animation with the provided drawable state specs so that it will be run
58 * @param animation The Animation to run when the specs match
60 public void addState(int[] specs, Animation animatio
179 Tuple(int[] specs, Animation Animation) argument
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h60 struct Animation { struct in class:android::BootAnimation
79 Animation* animation;
91 status_t initTexture(const Animation::Frame& frame);
95 Animation* loadAnimation(const String8&);
96 bool playAnimation(const Animation&);
97 void releaseAnimation(Animation*) const;
98 bool parseAnimationDesc(Animation&);
99 bool preloadZip(Animation &animation);
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java32 * Abstraction for an Animation that can be applied to Views, Surfaces, or
36 public abstract class Animation implements Cloneable { class in inherits:Cloneable
97 // Animation and its subclasses to be compile-time initialized.
100 = SystemProperties.getBoolean("log.closeguard.Animation", false);
227 public Animation() { method in class:Animation
238 public Animation(Context context, AttributeSet attrs) { method in class:Animation
239 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.Animation);
269 protected Animation clone() throws CloneNotSupportedException {
270 final Animation animation = (Animation) supe
[all...]

Completed in 1502 milliseconds