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

1 2 3 4 5

  /external/webkit/WebCore/platform/animation/
Animation.cpp 23 #include "Animation.h"
27 Animation::Animation()
48 Animation::Animation(const Animation& o)
49 : RefCounted<Animation>()
70 Animation& Animation::operator=(const Animation& o
    [all...]
Animation.h 38 class Animation : public RefCounted<Animation> {
40 ~Animation();
42 static PassRefPtr<Animation> create() { return adoptRef(new Animation); };
53 // Flags this to be the special "none" animation (animation-name: none)
55 // We can make placeholder Animation objects to keep the comma-separated lists
104 Animation& operator=(const Animation& o)
    [all...]
AnimationList.h 28 #include "Animation.h"
48 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); }
50 Animation* animation(size_t i) { return m_animations[i].get(); } function in class:WebCore::AnimationList
51 const Animation* animation(size_t i) const { return m_animations[i].get(); } function in class:WebCore::AnimationList
54 Vector<RefPtr<Animation> > m_animations;
  /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...]
Animation1.java 26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
41 Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
TextSwitcher1.java 25 import android.view.animation.Animation;
26 import android.view.animation.AnimationUtils;
51 Animation in = AnimationUtils.loadAnimation(this,
53 Animation out = AnimationUtils.loadAnimation(this,
Animation3.java 26 import android.view.animation.AnimationUtils;
27 import android.view.animation.Animation;
28 import android.view.animation.TranslateAnimation;
57 Animation a = new TranslateAnimation(0.0f,
62 a.setRepeatMode(Animation.RESTART);
63 a.setRepeatCount(Animation.INFINITE);
  /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...]
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 17 package android.view.animation;
29 * The transformation of each individual animation are composed
35 public class AnimationSet extends Animation {
47 private ArrayList<Animation> mAnimations = new ArrayList<Animation>();
80 * Pass false if each animation should use its own interpolator.
89 final AnimationSet animation = (AnimationSet) super.clone(); local
90 animation.mTempTransformation = new Transformation();
91 animation.mAnimations = new ArrayList<Animation>();
    [all...]
LayoutAnimationController.java 17 package android.view.animation;
28 * A layout animation controller is used to animated a layout's, or a view
29 * group's, children. Each child uses the same animation but for every one of
30 * them, the animation starts at a different time. A layout animation controller
32 * child's animation start must be offset. The delay is computed by using
40 * {@link android.view.animation.GridLayoutAnimationController} will compute the
44 * Information used to compute the animation delay of each child are stored
46 * {@link android.view.animation.LayoutAnimationController.AnimationParameters},
56 * Distributes the animation delays in the order in which view were adde
325 final Animation animation = mAnimation.clone(); local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidatesContainer.java 27 import android.view.animation.AlphaAnimation;
28 import android.view.animation.Animation;
29 import android.view.animation.AnimationSet;
30 import android.view.animation.TranslateAnimation;
31 import android.view.animation.Animation.AnimationListener;
43 * view, animation is used to dismiss the current candidate view and show a new
63 * Animation time to show a new candidate view and dismiss the old one.
89 * The animation view used to show candidates. It contains two views
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTest.java 17 package android.view.animation.cts;
33 import android.view.animation.AccelerateDecelerateInterpolator;
34 import android.view.animation.AccelerateInterpolator;
35 import android.view.animation.Animation;
36 import android.view.animation.AnimationUtils;
37 import android.view.animation.DecelerateInterpolator;
38 import android.view.animation.Interpolator;
39 import android.view.animation.Transformation;
40 import android.view.animation.Animation.AnimationListener
136 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); local
162 Animation animation = new Animation() { local
218 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.accelerate_alpha); local
223 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
244 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
262 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
284 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); local
336 Animation animation = new Animation() { local
492 Animation animation = new Animation() { local
508 animation, ACCELERATE_ALPHA_DURATION + startOffset); local
578 Animation animation = new Animation() { local
    [all...]
AnimationSetTest.java 17 package android.view.animation.cts;
28 import android.view.animation.AccelerateInterpolator;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationSet;
32 import android.view.animation.ScaleAnimation;
33 import android.view.animation.Transformation;
34 import android.view.animation.TranslateAnimation;
98 +"It does not only initialize this animation with the dimensions."
    [all...]
AnimationUtilsTest.java 17 package android.view.animation.cts;
28 import android.view.animation.AccelerateInterpolator;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationUtils;
32 import android.view.animation.GridLayoutAnimationController;
33 import android.view.animation.Interpolator;
34 import android.view.animation.LayoutAnimationController;
77 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.anim_alpha) local
    [all...]
TranslateAnimationTest.java 17 package android.view.animation.cts;
26 import android.view.animation.Animation;
27 import android.view.animation.LinearInterpolator;
28 import android.view.animation.Transformation;
29 import android.view.animation.TranslateAnimation;
38 @TestTargetClass(android.view.animation.TranslateAnimation.class)
107 new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.6f, Animation.RELATIVE_TO_SELF, 0.6f,
108 Animation.RELATIVE_TO_SELF, 0.6f, Animation.RELATIVE_TO_SELF, 0.6f)
    [all...]
GridLayoutAnimationControllerTest.java 17 package android.view.animation.cts;
33 import android.view.animation.Animation;
34 import android.view.animation.AnimationUtils;
35 import android.view.animation.GridLayoutAnimationController;
36 import android.view.animation.Transformation;
37 import android.view.animation.GridLayoutAnimationController.AnimationParameters;
46 private Animation mDefaultAnimation;
89 args = {Animation.class}
94 args = {Animation.class, float.class, float.class
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
AndroidAnimation.h 37 AndroidAnimation(const Animation* animation,
66 const Animation* animation,
69 const Animation* animation,
85 const Animation* animation,
87 AndroidTransformAnimation(const Animation* animation, double beginTime)
    [all...]
GraphicsLayerAndroid.h 79 const Animation* anim,
83 const Animation*,
88 const Animation*,
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteZone.java 28 import android.view.animation.TranslateAnimation;
29 import android.view.animation.Animation;
30 import android.view.animation.AnimationSet;
31 import android.view.animation.AccelerateInterpolator;
32 import android.view.animation.AlphaAnimation;
50 private Animation mHandleInAnimation;
51 private Animation mHandleOutAnimation;
182 animationSet.addAnimation(new TranslateAnimation(Animation.ABSOLUTE, 0.0f,
183 Animation.ABSOLUTE, 0.0f, Animation.RELATIVE_TO_SELF, 1.0f
    [all...]
  /cts/tests/src/android/view/animation/cts/
AnimationTestUtils.java 17 package android.view.animation.cts;
22 import android.view.animation.Animation;
23 import android.view.animation.LayoutAnimationController;
26 * The utility methods for animation test.
40 * Assert run an animation successfully. Timeout is duration of animation.
42 * @param instrumentation to run animation.
43 * @param view view window to run animation.
44 * @param animation will be run
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 39 public class Animation extends Activity {
56 startActivity(new Intent(Animation.this, Controls1.class));
57 // Supply a custom animation. This one will just fade the new
58 // activity on top. Note that we need to also supply an animation
68 startActivity(new Intent(Animation.this, Controls1.class));
69 // This is a more complicated animation, involving transformations
71 // the duration of the animation we force the exiting activity
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 25 import android.view.animation.Animation;
26 import android.view.animation.AnimationUtils;
41 Animation mInAnimation;
42 Animation mOutAnimation;
132 * with the {@link #getOutAnimation() out animation} and the specified child
133 * enters the screen with the {@link #getInAnimation() in animation}.
230 * Returns the current animation used to animate a View that enters the screen.
232 * @return An Animation or null if none is set.
234 * @see #setInAnimation(android.view.animation.Animation
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarActivity.java 37 import android.view.animation.Animation;
38 import android.view.animation.AnimationUtils;
39 import android.view.animation.TranslateAnimation;
57 protected Animation mInAnimationForward;
58 protected Animation mOutAnimationForward;
59 protected Animation mInAnimationBackward;
60 protected Animation mOutAnimationBackward;
298 // We have to allocate these animation objects each time we switch views
299 // because that is the only way to set the animation parameters
    [all...]
  /external/webkit/WebCore/page/animation/
AnimationBase.h 37 class Animation;
51 AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
60 // the animation is started. This may or may not require deferred response from the animator.
65 AnimationStateNew, // animation just created, animation not running yet
68 AnimationStateStartWaitResponse, // animation started, waiting for response
69 AnimationStateLooping, // response received, animation running, loop timer running, waiting for fire
70 AnimationStateEnding, // received, animation running, end timer running, waiting for fire
71 AnimationStatePausedWaitTimer, // in pause mode when animation started
72 AnimationStatePausedWaitResponse, // animation paused when in STARTING stat
    [all...]

Completed in 501 milliseconds

1 2 3 4 5