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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/gfx/animation/
animation_delegate.h 12 class Animation;
17 // state of an animation.
22 // Called when an animation has completed.
23 virtual void AnimationEnded(const Animation* animation) {}
25 // Called when an animation has progressed.
26 virtual void AnimationProgressed(const Animation* animation) {}
28 // Called when an animation has been canceled.
29 virtual void AnimationCanceled(const Animation* animation) {
    [all...]
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...]
test_animation_delegate.h 9 #include "ui/gfx/animation/animation_delegate.h"
20 virtual void AnimationEnded(const Animation* animation) {
25 virtual void AnimationCanceled(const Animation* animation) {
  /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/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/chromium_org/cc/animation/
animation_delegate.h 9 #include "cc/animation/animation.h"
17 Animation::TargetProperty target_property) = 0;
20 Animation::TargetProperty target_property) = 0;
animation_unittest.cc 5 #include "cc/animation/animation.h"
21 scoped_ptr<Animation> CreateAnimation(double iterations,
24 scoped_ptr<Animation> to_return(Animation::Create(
29 Animation::Opacity));
35 scoped_ptr<Animation> CreateAnimation(double iterations, double duration) {
39 scoped_ptr<Animation> CreateAnimation(double iterations) {
44 scoped_ptr<Animation> anim(CreateAnimation(0));
51 scoped_ptr<Animation> anim(CreateAnimation(1))
    [all...]
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...]
  /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...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/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);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/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);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/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);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
SampledEffect.h 8 #include "core/animation/Animation.h"
9 #include "core/animation/AnimationPlayer.h"
10 #include "core/animation/Interpolation.h"
18 static PassOwnPtrWillBeRawPtr<SampledEffect> create(Animation* animation, PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > interpolations)
20 return adoptPtrWillBeNoop(new SampledEffect(animation, interpolations));
29 Animation* animation() const { return m_animation; } function in class:blink::SampledEffect
31 Animation::Priority priority() const { return m_priority;
    [all...]
Animation.h 34 #include "core/animation/AnimationEffect.h"
35 #include "core/animation/AnimationNode.h"
36 #include "core/animation/EffectInput.h"
37 #include "core/animation/TimingInput.h"
48 class Animation FINAL : public AnimationNode {
53 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtrWillBeRawPtr<EventDelegate> = nullptr);
55 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Dictionary& timingInputDictionary);
56 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, double duration);
57 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>);
58 static PassRefPtrWillBeRawPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, const Dictionary& timingInpu (…)
    [all...]
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...]
  /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/chromium_org/cc/blink/
web_animation_impl.cc 7 #include "cc/animation/animation.h"
8 #include "cc/animation/animation_curve.h"
9 #include "cc/animation/animation_id_provider.h"
16 using cc::Animation;
62 animation_ = Animation::Create(
66 static_cast<cc::Animation::TargetProperty>(target_property));
118 case cc::Animation::Normal:
120 case cc::Animation::Reverse:
122 case cc::Animation::Alternate
    [all...]
web_to_cc_animation_delegate_adapter.h 10 #include "cc/animation/animation_delegate.h"
26 cc::Animation::TargetProperty target_property) OVERRIDE;
29 cc::Animation::TargetProperty target_property) OVERRIDE;
  /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);
  /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...]

Completed in 5778 milliseconds

1 2 3 4 5 6 7 8 91011>>