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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/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...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
AnimData.java 35 import com.jme3.animation.Animation;
36 import com.jme3.animation.Skeleton;
42 public final ArrayList<Animation> anims;
44 public AnimData(Skeleton skeleton, ArrayList<Animation> anims) {
  /external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.h 9 #include "ui/base/animation/animation_delegate.h"
15 // Invoke |StartAnimation| to start an animation that when done invokes
23 // Starts the animation. If the animation is currently running it is stopped
24 // and restarted. The animation transitions the suggested text to look like
25 // selected text. When the animation completes |OnCommitSuggestedText| is
29 // Stops the animation.
36 virtual void AnimationEnded(const ui::Animation* animation);
37 virtual void AnimationProgressed(const ui::Animation* animation)
    [all...]
  /frameworks/rs/
rsAnimation.h 28 class Animation : public ObjectBase {
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 Animation(Context *rsc);
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);
130 Animation *a = NULL;//Animation::create(rsc, inValues, outValues, valueCount, interp, pre, post)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneAnimation.java 32 package com.jme3.animation;
35 * @deprecated use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
38 public final class BoneAnimation extends Animation {
SpatialAnimation.java 1 package com.jme3.animation;
4 * @deprecated use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
7 public class SpatialAnimation extends Animation {
Animation.java 32 package com.jme3.animation;
39 * The animation class updates the animation target with the tracks of a given type.
43 public class Animation implements Savable, Cloneable {
46 * The name of the animation.
51 * The length of the animation.
56 * The tracks of the animation.
63 public Animation() {}
66 * Creates a new <code>Animation</code> with the given name and length.
68 * @param name The name of the animation
    [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/src/main/java/android/view/animation/
ShadowAnimationBridge.java 1 package android.view.animation;
9 private Animation realAnimation;
11 public ShadowAnimationBridge(Animation realAnimation) {
  /external/robolectric/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);
ShadowAnimation.java 3 import android.view.animation.Animation;
4 import android.view.animation.Interpolator;
5 import android.view.animation.ShadowAnimationBridge;
6 import android.view.animation.Transformation;
12 * Shadow implementation of {@code Animation} that provides support for invoking listener callbacks.
15 @Implements(Animation.class)
18 private Animation.AnimationListener listener;
29 private Animation realAnimation;
32 public void setAnimationListener(Animation.AnimationListener l)
    [all...]
  /external/webkit/Source/WebCore/platform/animation/
Animation.cpp 23 #include "Animation.h"
27 Animation::Animation()
50 Animation::Animation(const Animation& o)
51 : RefCounted<Animation>()
74 Animation& Animation::operator=(const Animation& o
    [all...]
Animation.h 39 class Animation : public RefCounted<Animation> {
41 ~Animation();
43 static PassRefPtr<Animation> create() { return adoptRef(new Animation); }
44 static PassRefPtr<Animation> create(const Animation* o) { return adoptRef(new Animation(*o)); }
56 // Flags this to be the special "none" animation (animation-name: none
    [all...]
AnimationList.h 28 #include "Animation.h"
52 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); }
54 Animation* animation(size_t i) { return m_animations[i].get(); } function in class:WebCore::AnimationList
55 const Animation* animation(size_t i) const { return m_animations[i].get(); } function in class:WebCore::AnimationList
60 Vector<RefPtr<Animation> > m_animations;
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
CanvasAnimation.java 21 public abstract class CanvasAnimation extends Animation {
  /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...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTest.java 17 package android.view.animation.cts;
29 import android.view.animation.AccelerateDecelerateInterpolator;
30 import android.view.animation.AccelerateInterpolator;
31 import android.view.animation.Animation;
32 import android.view.animation.AnimationUtils;
33 import android.view.animation.DecelerateInterpolator;
34 import android.view.animation.Interpolator;
35 import android.view.animation.Transformation;
36 import android.view.animation.Animation.AnimationListener
88 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); local
100 Animation animation = new Animation() { local
114 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.accelerate_alpha); local
119 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
140 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
158 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
174 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); local
188 Animation animation = new Animation() { local
330 Animation animation = new Animation() { local
346 animation, ACCELERATE_ALPHA_DURATION + startOffset); local
372 Animation animation = new Animation() { local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ObjectAnimationModifier.java 8 import com.jme3.animation.AnimControl;
9 import com.jme3.animation.Animation;
10 import com.jme3.animation.SpatialTrack;
18 * This modifier allows to add animation to the object.
25 /** Loaded animation data. */
29 * This constructor reads animation of the object itself (without bones) and
30 * stores it as an ArmatureModifierData modifier. The animation is returned
33 * animation should be working. The stored modifier is an anim data and
39 * the name of object's animation
54 Animation animation = new Animation(objectAnimationName, ipo.getLastFrame() \/ fps); local
75 Animation animation = animList.get(i); local
76 anims.put(animation.getName(), animation); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.h 39 const Animation* animation,
83 static PassRefPtr<AndroidOpacityAnimation> create(const Animation* animation,
86 AndroidOpacityAnimation(const Animation* animation,
96 const Animation* animation,
99 AndroidTransformAnimation(const Animation* animation,
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
hover_controller_gtk.h 11 #include "ui/base/animation/animation_delegate.h"
12 #include "ui/base/animation/slide_animation.h"
13 #include "ui/base/animation/throb_animation.h"
46 virtual void AnimationProgressed(const ui::Animation* animation);
47 virtual void AnimationEnded(const ui::Animation* animation);
48 virtual void AnimationCanceled(const ui::Animation* animation);
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_arrow_model.h 12 #include "ui/base/animation/animation_delegate.h"
13 #include "ui/base/animation/slide_animation.h"
49 virtual void AnimationEnded(const ui::Animation* animation);
50 virtual void AnimationProgressed(const ui::Animation* animation);
51 virtual void AnimationCanceled(const ui::Animation* animation);
70 // An animation that tracks the progress of the transition from the last color
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithDisappearingItemBug.java 25 import android.view.animation.AlphaAnimation;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationSet;
28 import android.view.animation.LayoutAnimationController;
29 import android.view.animation.TranslateAnimation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
64 animation.setDuration(50);
65 set.addAnimation(animation);
    [all...]

Completed in 377 milliseconds

1 2 3 4 5 6 7 8 91011>>