HomeSort by relevance Sort by last modified time
    Searched refs:animation (Results 51 - 75 of 632) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.cc 10 #include "ui/base/animation/multi_animation.h"
49 void SuggestedTextView::AnimationEnded(const ui::Animation* animation) {
53 void SuggestedTextView::AnimationProgressed(const ui::Animation* animation) {
62 ui::Tween::ValueBetween(animation->GetCurrentValue(), 0, 255)));
67 void SuggestedTextView::AnimationCanceled(const ui::Animation* animation) {
70 ui::Animation* SuggestedTextView::CreateAnimation() {
76 ui::MultiAnimation* animation = new ui::MultiAnimation(parts) local
    [all...]
  /frameworks/base/core/java/android/animation/
TimeAnimator.java 1 package android.animation;
7 * on every animation frame to its TimeListener (if set), with information about this animator,
8 * the total elapsed time, and the elapsed time since the previous animation frame.
34 * an animation.
54 * to a <code>TimeAnimator</code> instance to receive callbacks on every animation
63 * <p>Notifies listeners of the occurrence of another frame of the animation,
66 * @param animation The animator sending out the notification.
70 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardGlowStripView.java 18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.ValueAnimator;
21 import android.animation.ValueAnimator.AnimatorUpdateListener;
27 import android.view.animation.DecelerateInterpolator;
28 import android.view.animation.Interpolator;
29 import android.view.animation.LinearInterpolator;
119 public void onAnimationEnd(Animator animation) {
126 public void onAnimationStart(Animator animation) {
132 public void onAnimationUpdate(ValueAnimator animation) {
    [all...]
KeyguardSecurityViewHelper.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
42 public void onAnimationCancel(Animator animation) {
48 public void onAnimationEnd(Animator animation) {
  /cts/tests/src/android/view/animation/cts/
AnimationTestStubActivity.java 17 package android.view.animation.cts;
LayoutAnimStubActivity.java 17 package android.view.animation.cts;
  /external/chromium/chrome/browser/ui/views/infobars/
infobar.h 11 #include "ui/base/animation/animation_delegate.h"
51 const ui::SlideAnimation* animation() const { return animation_.get(); } function in class:InfoBar
60 virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
70 // within us, taking into account animation so the control "slides in" (or
75 ui::SlideAnimation* animation() { return animation_.get(); } function in class:InfoBar
86 virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Track.java 32 package com.jme3.animation;
40 * Sets the time of the animation.
46 * @param time The time in the animation
  /frameworks/base/core/java/android/view/animation/
AccelerateDecelerateInterpolator.java 17 package android.view.animation;
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...]
  /frameworks/base/core/tests/coretests/src/android/animation/
BasicAnimatorActivity.java 16 package android.animation;
ObjectAnimatorEventsTest.java 16 package android.animation;
  /frameworks/support/v4/honeycomb/android/support/v4/view/
ViewCompatHC.java 19 import android.animation.ValueAnimator;
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
24 * A convenience class for two-way animations, e.g. a fadeIn/fadeOut animation.
25 * With a regular ValueAnimator, if you call reverse to show the 'out' animation, you'll get
26 * a frame-by-frame mirror of the 'in' animation -- i.e., the interpolated values will
27 * be exactly reversed. Using this class, both the 'in' and the 'out' animation use the
55 public void onAnimationEnd(Animator animation) {
70 // TODO: We don't really need to do the animation if startValue == toValue, but
71 // somehow that doesn't seem to work, possibly a quirk of the animation framewor
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AccelerateDecelerateInterpolatorTest.java 17 package android.view.animation.cts;
28 import android.view.animation.AccelerateDecelerateInterpolator;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationUtils;
32 import android.view.animation.Interpolator;
33 import android.view.animation.Transformation;
71 final Animation anim = AnimationUtils.loadAnimation(mActivity,
LinearInterpolatorTest.java 17 package android.view.animation.cts;
22 import android.view.animation.AlphaAnimation;
23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
25 import android.view.animation.Interpolator;
26 import android.view.animation.LinearInterpolator;
27 import android.view.animation.Transformation;
73 final Animation anim = AnimationUtils.loadAnimation(mActivity, R.anim.alpha);
LayoutAnimationControllerTest.java 17 package android.view.animation.cts;
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.LayoutAnimationController;
36 import android.view.animation.ScaleAnimation;
37 import android.view.animation.Transformation
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ListFlipper.java 17 package com.example.android.apis.animation;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.Animator;
23 import android.animation.ObjectAnimator;
24 import android.view.animation.AccelerateInterpolator;
25 import android.view.animation.DecelerateInterpolator;
26 import android.view.animation.Interpolator;
39 * UI allows you to set the position of the animation. Pressing the Run button will play from
40 * the current position of the animation.
AnimationLoading.java 17 package com.example.android.apis.animation;
21 import android.animation.AnimatorInflater;
22 import android.animation.AnimatorSet;
23 import android.animation.ObjectAnimator;
29 import android.animation.Animator;
30 import android.animation.ValueAnimator;
73 Animator animation = null; field in class:AnimationLoading.MyAnimationView
86 if (animation == null) {
95 public void onAnimationUpdate(ValueAnimator animation) {
96 balls.get(1).setAlpha((Float) animation.getAnimatedValue())
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
hover_controller_gtk.cc 67 void HoverControllerGtk::AnimationProgressed(const ui::Animation* animation) {
71 // Ignore the hover animation if we are throbbing.
72 if (animation == &hover_animation_ && throb_animation_.is_animating())
76 animation->GetCurrentValue());
79 void HoverControllerGtk::AnimationEnded(const ui::Animation* animation) {
82 if (animation != &throb_animation_)
89 void HoverControllerGtk::AnimationCanceled(const ui::Animation* animation) {
    [all...]
  /external/webkit/Source/WebCore/page/animation/
AnimationController.cpp 68 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); local
69 if (!animation) {
70 animation = CompositeAnimation::create(this);
71 m_compositeAnimations.set(renderer, animation);
73 return animation;
80 PassRefPtr<CompositeAnimation> animation = m_compositeAnimations.take(renderer); local
81 if (!animation)
83 animation->clearRenderer();
84 return animation->suspended();
207 // Fire events right away, to avoid a flash of unanimated style after an animation completes, and befor
214 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); local
223 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); local
447 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer); local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 21 import android.animation.Animator;
22 import android.animation.ObjectAnimator;
23 import android.animation.ValueAnimator;
24 import android.animation.Animator.AnimatorListener;
28 import android.view.animation.DecelerateInterpolator;
61 * Adds an animation that interpolates given property from its current value
65 * @param delay the delay to start the animation, in ms.
68 * @param replace if true, replace the current animation with this one.
109 * Adds the given animation to the list of animations for this object.
210 public void onAnimationCancel(Animator animation) {
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
ActionableToastBar.java 19 import android.animation.Animator;
20 import android.animation.AnimatorInflater;
145 // Also prevent hiding if show animation is going on.
168 public void onAnimationStart(Animator animation) {
172 public void onAnimationEnd(Animator animation) {
173 // There is a tiny change that and hide animation could have finished right
174 // before the show animation finished. In that case, the hide will mark the
179 public void onAnimationCancel(Animator animation) {
182 public void onAnimationRepeat(Animator animation) {
196 public void onAnimationStart(Animator animation) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 26 #include "Animation.h"
45 const Animation* animation,
49 , m_duration(animation->duration())
50 , m_fillsBackwards(animation->fillsBackwards())
51 , m_fillsForwards(animation->fillsForwards())
52 , m_iterationCount(animation->iterationCount())
53 , m_direction(animation->direction())
54 , m_timingFunction(animation->timingFunction())
83 if (elapsedTime < 0) // animation not yet started
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
AppWindowAnimator.java 10 import android.view.animation.Animation;
11 import android.view.animation.Transformation;
24 Animation animation; field in class:AppWindowAnimator
41 // Special surface for thumbnail animation.
47 Animation thumbnailAnimation;
53 static final Animation sDummyAnimation = new DummyAnimation();
61 public void setAnimation(Animation anim, boolean initialized) {
63 TAG, "Setting animation in " + mAppToken + ": " + anim)
    [all...]

Completed in 762 milliseconds

1 23 4 5 6 7 8 91011>>