HomeSort by relevance Sort by last modified time
    Searched refs:Animation (Results 1 - 25 of 281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
TestAnimationListener.java 3 import android.view.animation.Animation;
4 import android.view.animation.Animation.AnimationListener;
13 public void onAnimationStart(Animation animation) {
18 public void onAnimationEnd(Animation animation) {
23 public void onAnimationRepeat(Animation animation) {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/animation/
AnimationListenerAdapter.java 17 package com.android.dialer.animation;
19 import android.view.animation.Animation;
20 import android.view.animation.Animation.AnimationListener;
30 public void onAnimationStart(Animation animation) {}
34 public void onAnimationEnd(Animation animation) {}
38 public void onAnimationRepeat(Animation animation) {
    [all...]
  /packages/apps/PhoneCommon/src/com/android/phone/common/animation/
AnimationListenerAdapter.java 17 package com.android.phone.common.animation;
19 import android.view.animation.Animation;
20 import android.view.animation.Animation.AnimationListener;
32 public void onAnimationStart(Animation animation) {
39 public void onAnimationEnd(Animation animation) {
46 public void onAnimationRepeat(Animation animation)
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
TestAnimationListener.java 3 import android.view.animation.Animation;
4 import android.view.animation.Animation.AnimationListener;
13 public void onAnimationStart(Animation animation) {
18 public void onAnimationEnd(Animation animation) {
23 public void onAnimationRepeat(Animation animation) {
    [all...]
  /frameworks/rs/
rsAnimation.cpp 24 void Animation::serialize(Context *rsc, OStream *stream) const {
27 Animation *Animation::createFromStream(Context *rsc, IStream *stream) {
32 Animation::Animation(Context *rsc) : ObjectBase(rsc)
47 Animation * Animation::create(Context *rsc,
56 Animation *a = new Animation(rsc);
127 Animation *a = nullptr;//Animation::create(rsc, inValues, outValues, valueCount, interp, pre, post)
    [all...]
rsAnimation.h 28 class Animation : public ObjectBase {
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 explicit Animation(Context *rsc);
  /external/skia/bench/
SKPAnimationBench.h 20 class Animation : public SkRefCnt {
25 virtual ~Animation() {}
28 SKPAnimationBench(const char* name, const SkPicture*, const SkIRect& devClip, Animation*,
31 static Animation* CreateZoomAnimation(SkScalar zoomMax, double zoomPeriodMs);
43 sk_sp<Animation> fAnimation;
  /external/skqp/bench/
SKPAnimationBench.h 20 class Animation : public SkRefCnt {
25 virtual ~Animation() {}
28 SKPAnimationBench(const char* name, const SkPicture*, const SkIRect& devClip, Animation*,
31 static Animation* CreateZoomAnimation(SkScalar zoomMax, double zoomPeriodMs);
43 sk_sp<Animation> fAnimation;
  /external/glide/library/src/main/java/com/bumptech/glide/
DrawableOptions.java 3 import android.view.animation.Animation;
34 * using the given {@link android.view.animation.Animation}.
41 * asked to start an animation using a single {@link android.view.animation.Animation} object which results in
43 * per call to {@link com.bumptech.glide.GenericRequestBuilder#load(Object)} to avoid re-using animation objects.
45 * @param animation The Animation to use if no placeholder is set
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GenericAnimationComponent.java 24 setPhase(ComponentPhases.ANIMATION.ordinal());
43 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 {
  /external/robolectric/v1/src/main/java/android/view/animation/
ShadowAnimationBridge.java 1 package android.view.animation;
9 private Animation realAnimation;
11 public ShadowAnimationBridge(Animation realAnimation) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimationSet.java 6 import android.view.animation.Animation;
7 import android.view.animation.AnimationSet;
15 private ArrayList<Animation> animationList = new ArrayList<Animation>();
22 public void addAnimation(Animation anim) {
27 public List<Animation> getAnimations() {
ShadowAnimationUtils.java 4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
6 import android.view.animation.TranslateAnimation;
17 public static Animation loadAnimation(Context context, int id) {
18 Animation anim = new TranslateAnimation(0, 0, 30, 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/wakelock/
KeepAwakeAnimationListener.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
22 import android.view.animation.Animation;
28 implements Animation.AnimationListener {
35 sWakeLock = WakeLock.createPartial(context, "animation");
40 public void onAnimationStart(Animation animation) {
45 public void onAnimationEnd(Animation animation) {
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAnimationSetTest.java 6 import android.view.animation.Animation;
7 import android.view.animation.AnimationSet;
8 import android.view.animation.RotateAnimation;
9 import android.view.animation.TranslateAnimation;
18 final Animation.AnimationListener moveListener = mock(Animation.AnimationListener.class);
19 final Animation.AnimationListener spinListener = mock(Animation.AnimationListener.class);
25 final Animation move = new TranslateAnimation(0, 100, 0, 100)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewAnimation.java 1 package com.bumptech.glide.request.animation;
4 import android.view.animation.Animation;
7 * A {@link com.bumptech.glide.request.animation.GlideAnimation GlideAnimation} that can apply a
8 * {@link android.view.animation.Animation Animation} to a {@link android.view.View View} using
9 * {@link android.view.View#startAnimation(android.view.animation.Animation) View.startAnimation}.
18 * Constructs a new ViewAnimation that will start the given {@link android.view.animation.Animation}
39 Animation animation = animationFactory.build(); local
    [all...]
ViewAnimationFactory.java 1 package com.bumptech.glide.request.animation;
4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
8 * A {@link com.bumptech.glide.request.animation.GlideAnimationFactory} that produces
9 * {@link com.bumptech.glide.request.animation.ViewAnimation}s.
17 public ViewAnimationFactory(Animation animation) {
18 this(new ConcreteAnimationFactory(animation));
30 * Returns a new {@link com.bumptech.glide.request.animation.GlideAnimation} for the given arguments. I
52 private final Animation animation; field in class:ViewAnimationFactory.ConcreteAnimationFactory
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAnimationBridge.java 3 import android.view.animation.Animation;
4 import android.view.animation.Transformation;
10 * Bridge between shadows and {@link android.view.animation.Animation}.
14 private Animation realAnimation;
16 public ShadowAnimationBridge(Animation realAnimation) {
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
CanvasAnimation.java 21 public abstract class CanvasAnimation extends Animation {
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
ReflectionInflaterTest.java 27 import android.view.animation.Animation;
28 import android.view.animation.AnimationSet;
29 import android.view.animation.ScaleAnimation;
46 final Animation result = inflater.inflate(R.xml.reflection_inflater_test);
50 final List<Animation> animations = set.getAnimations();
59 inflater.setDefaultPackage("android.view.animation.");
60 final Animation result =
65 final List<Animation> animations = set.getAnimations();
70 private static class TestInflater extends ReflectionInflater<Animation> {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawable.java 21 import android.view.animation.Animation;
22 import android.view.animation.AnimationUtils;
23 import android.view.animation.Transformation;
27 private Animation mAnimation;
34 public AnimateDrawable(Drawable target, Animation animation) {
36 mAnimation = animation;
39 public Animation getAnimation() {
43 public void setAnimation(Animation anim)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation2.java 21 import android.view.animation.AlphaAnimation;
22 import android.view.animation.Animation;
23 import android.view.animation.AnimationSet;
24 import android.view.animation.LayoutAnimationController;
25 import android.view.animation.TranslateAnimation;
39 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
40 animation.setDuration(50);
41 set.addAnimation(animation);
    [all...]
  /packages/apps/StorageManager/src/com/android/storagemanager/utils/
Utils.java 20 import android.view.animation.Animation;
21 import android.view.animation.Animation.AnimationListener;
22 import android.view.animation.AnimationUtils;
34 Animation animation = local
41 animation.setAnimationListener(
44 public void onAnimationStart(Animation animation) {}
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 55 struct Animation {
84 Animation* animation; member in struct:android::BootAnimation::Animation::Part
100 // the animation and be provided with all parts in animation.
101 virtual void init(const Vector<Animation::Part>& /*parts*/) {}
103 // Will be called while animation is playing before each part is
109 virtual void playPart(int /*partNumber*/, const Animation::Part& /*part*/,
112 // Will be called when animation is done and thread is shutting down.
151 bool validClock(const Animation::Part& part)
    [all...]
  /external/skia/experimental/skottie/
Skottie.h 37 class Animation : public SkRefCnt {
39 static sk_sp<Animation> Make(SkStream*, const ResourceProvider&);
40 static sk_sp<Animation> MakeFromFile(const char path[], const ResourceProvider* = nullptr);
42 ~Animation() override;
57 Animation(const ResourceProvider&,

Completed in 665 milliseconds

1 2 3 4 5 6 7 8 91011>>