HomeSort by relevance Sort by last modified time
    Searched defs:Animation (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/ui/gfx/animation/
animation.cc 5 #include "ui/gfx/animation/animation.h"
7 #include "ui/gfx/animation/animation_container.h"
8 #include "ui/gfx/animation/animation_delegate.h"
9 #include "ui/gfx/animation/tween.h"
18 Animation::Animation(base::TimeDelta timer_interval)
24 Animation::~Animation() {
31 void Animation::Start()
    [all...]
animation.h 11 #include "ui/gfx/animation/animation_container_element.h"
23 // you're implementing a new animation type, otherwise you'll likely want one of
26 // To subclass override Step, which is invoked as the animation progresses and
27 // GetCurrentValue() to return the value appropriate to the animation.
28 class GFX_EXPORT Animation : public AnimationContainerElement {
30 explicit Animation(base::TimeDelta timer_interval);
31 virtual ~Animation();
33 // Starts the animation. Does nothing if the animation is already running.
36 // Stops the animation. Does nothing if the animation is not running
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 35 * <p>Example of using a custom animation when transitioning between activities.</p>
37 public class Animation extends Activity {
69 startActivity(new Intent(Animation.this, AlertDialogSamples.class));
70 // Supply a custom animation. This one will just fade the new
71 // activity on top. Note that we need to also supply an animation
81 startActivity(new Intent(Animation.this, AlertDialogSamples.class));
82 // This is a more complicated animation, involving transformations
84 // the duration of the animation we force the exiting activity
93 // Create the desired custom animation, involving transformations
95 // the duration of the animation we force the exiting activit
    [all...]
  /external/chromium_org/cc/animation/
animation.cc 5 #include "cc/animation/animation.h"
11 #include "cc/animation/animation_curve.h"
26 COMPILE_ASSERT(static_cast<int>(cc::Animation::RunStateEnumSize) ==
39 COMPILE_ASSERT(static_cast<int>(cc::Animation::TargetPropertyEnumSize) ==
47 scoped_ptr<Animation> Animation::Create(
52 return make_scoped_ptr(new Animation(curve.Pass(),
57 Animation::Animation(scoped_ptr<AnimationCurve> curve
    [all...]
animation.h 17 // An Animation contains all the state required to play an AnimationCurve.
20 class CC_EXPORT Animation {
22 // Animations begin in the 'WaitingForTargetAvailability' state. An Animation
25 // When this time arrives, the controller will move the animation into the
28 // the Aborted or Finished states. A Finished animation was allowed to run to
29 // completion, but an Aborted animation was not.
61 static scoped_ptr<Animation> Create(scoped_ptr<AnimationCurve> curve,
66 virtual ~Animation();
75 // This is the number of times that the animation will play. If this
76 // value is zero the animation will not play. If it is negative, the
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.cpp 32 #include "core/animation/Animation.h"
36 #include "core/animation/ActiveAnimations.h"
37 #include "core/animation/AnimationPlayer.h"
38 #include "core/animation/AnimationTimeline.h"
39 #include "core/animation/CompositorAnimations.h"
40 #include "core/animation/Interpolation.h"
41 #include "core/animation/KeyframeEffectModel.h"
48 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Pri (…)
    [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/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 417 milliseconds