Home
last modified time | relevance | path

Searched refs:Animation (Results 1 – 25 of 115) sorted by relevance

12345

/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/externs/
Dweb-animations.js38 var Animation = function() {}; class
43 Animation.prototype.cancel = function() {};
48 Animation.prototype.finish = function() {};
53 Animation.prototype.reverse = function() {};
58 Animation.prototype.pause = function() {};
63 Animation.prototype.play = function() {};
66 Animation.prototype.startTime;
69 Animation.prototype.currentTime;
72 Animation.prototype.playbackRate;
75 Animation.prototype.playState;
[all …]
/external/skqp/third_party/Nima-Cpp/
DBUILD.gn56 "../externals/Nima-Cpp/Source/Animation/ActorAnimation.cpp",
57 "../externals/Nima-Cpp/Source/Animation/ActorAnimationInstance.cpp",
58 "../externals/Nima-Cpp/Source/Animation/ComponentAnimation.cpp",
59 "../externals/Nima-Cpp/Source/Animation/Interpolators/CubicSolver.cpp",
60 "../externals/Nima-Cpp/Source/Animation/Interpolators/ValueTimeCurveInterpolator.cpp",
61 "../externals/Nima-Cpp/Source/Animation/KeyFrames/KeyFrame.cpp",
62 "../externals/Nima-Cpp/Source/Animation/KeyFrames/KeyFrameActiveChild.cpp",
63 "../externals/Nima-Cpp/Source/Animation/KeyFrames/KeyFrameCustomProperty.cpp",
64 "../externals/Nima-Cpp/Source/Animation/KeyFrames/KeyFrameDrawOrder.cpp",
65 "../externals/Nima-Cpp/Source/Animation/KeyFrames/KeyFrameIKStrength.cpp",
[all …]
/external/skia/modules/skottie/src/
DSkottie.cpp164 Animation::Builder::Stats* stats, in AnimationBuilder()
304 Animation::Builder::Builder(uint32_t flags) : fFlags(flags) {} in Builder()
305 Animation::Builder::~Builder() = default;
307 Animation::Builder& Animation::Builder::setResourceProvider(sk_sp<ResourceProvider> rp) { in setResourceProvider()
312 Animation::Builder& Animation::Builder::setFontManager(sk_sp<SkFontMgr> fmgr) { in setFontManager()
317 Animation::Builder& Animation::Builder::setPropertyObserver(sk_sp<PropertyObserver> pobserver) { in setPropertyObserver()
322 Animation::Builder& Animation::Builder::setLogger(sk_sp<Logger> logger) { in setLogger()
327 Animation::Builder& Animation::Builder::setMarkerObserver(sk_sp<MarkerObserver> mobserver) { in setMarkerObserver()
332 Animation::Builder& Animation::Builder::setPrecompInterceptor(sk_sp<PrecompInterceptor> pi) { in setPrecompInterceptor()
337 sk_sp<Animation> Animation::Builder::make(SkStream* stream) { in make()
[all …]
/external/skqp/modules/skottie/src/
DSkottie.cpp216 Animation::Builder::Stats* stats, in AnimationBuilder()
348 Animation::Builder::Builder() = default;
349 Animation::Builder::~Builder() = default;
351 Animation::Builder& Animation::Builder::setResourceProvider(sk_sp<ResourceProvider> rp) { in setResourceProvider()
356 Animation::Builder& Animation::Builder::setFontManager(sk_sp<SkFontMgr> fmgr) { in setFontManager()
361 Animation::Builder& Animation::Builder::setPropertyObserver(sk_sp<PropertyObserver> pobserver) { in setPropertyObserver()
366 Animation::Builder& Animation::Builder::setLogger(sk_sp<Logger> logger) { in setLogger()
371 Animation::Builder& Animation::Builder::setMarkerObserver(sk_sp<MarkerObserver> mobserver) { in setMarkerObserver()
376 sk_sp<Animation> Animation::Builder::make(SkStream* stream) { in make()
396 sk_sp<Animation> Animation::Builder::make(const char* data, size_t data_len) { in make()
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DGenericAnimationComponent.java43 mSprite.playAnimation(Animation.IDLE); in update()
46 mSprite.playAnimation(Animation.MOVE); in update()
49 mSprite.playAnimation(Animation.ATTACK); in update()
52 mSprite.playAnimation(Animation.HIT_REACT); in update()
55 mSprite.playAnimation(Animation.DEATH); in update()
58 mSprite.playAnimation(Animation.HIDE); in update()
61 mSprite.playAnimation(Animation.FROZEN); in update()
76 public static final class Animation { class in GenericAnimationComponent
DDoorAnimationComponent.java23 public static final class Animation { class in DoorAnimationComponent
66 final float openAnimationLength = mSprite.findAnimation(Animation.OPENING).getLength(); in open()
72 mSprite.playAnimation(Animation.OPEN); in open()
92 mSprite.playAnimation(Animation.OPENING); in open()
107 final float closeAnimationLength = mSprite.findAnimation(Animation.CLOSING).getLength(); in close()
111 mSprite.playAnimation(Animation.CLOSED); in close()
123 mSprite.playAnimation(Animation.CLOSING); in close()
158 mSprite.playAnimation(Animation.OPEN); in update()
161 mSprite.playAnimation(Animation.CLOSED); in update()
171 if (mSprite.getCurrentAnimation() == Animation.OPENING && mState == STATE_CLOSED) { in update()
[all …]
DAnimationPlayerActivity.java31 import android.view.animation.Animation;
106 Animation gameOverAnim = new TranslateAnimation(startX, 0, 0, 0); in onCreate()
116 Animation foregroundAnim = AnimationUtils.loadAnimation(this, R.anim.horizontal_layer2_slide); in onCreate()
117 Animation backgroundAnim = AnimationUtils.loadAnimation(this, R.anim.horizontal_layer1_slide); in onCreate()
133 Animation backgroundAnim = AnimationUtils.loadAnimation(this, R.anim.rokudou_slide_bg); in onCreate()
134 Animation sphereAnim = AnimationUtils.loadAnimation(this, R.anim.rokudou_slide_sphere); in onCreate()
135 Animation cliffsAnim = AnimationUtils.loadAnimation(this, R.anim.rokudou_slide_cliffs); in onCreate()
136 Animation rokudouAnim = AnimationUtils.loadAnimation(this, R.anim.rokudou_slide_rokudou); in onCreate()
137 Animation gameOverAnim = AnimationUtils.loadAnimation(this, R.anim.rokudou_game_over); in onCreate()
DDifficultyMenuActivity.java12 import android.view.animation.Animation;
23 private Animation mButtonFlickerAnimation;
24 private Animation mFadeOutAnimation;
25 private Animation mAlternateFadeOutAnimation;
131 protected class StartActivityAfterAnimation implements Animation.AnimationListener {
139 public void onAnimationEnd(Animation animation) { in onAnimationEnd()
160 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat()
165 public void onAnimationStart(Animation animation) { in onAnimationStart()
DExtrasMenuActivity.java16 import android.view.animation.Animation;
26 private Animation mButtonFlickerAnimation;
27 private Animation mFadeOutAnimation;
28 private Animation mAlternateFadeOutAnimation;
29 private Animation mLockedAnimation;
195 protected class StartActivityAfterAnimation implements Animation.AnimationListener {
203 public void onAnimationEnd(Animation animation) { in onAnimationEnd()
223 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat()
228 public void onAnimationStart(Animation animation) { in onAnimationStart()
DMainMenuActivity.java35 import android.view.animation.Animation;
46 private Animation mButtonFlickerAnimation;
47 private Animation mFadeOutAnimation;
48 private Animation mAlternateFadeOutAnimation;
49 private Animation mFadeInAnimation;
311 Animation anim = AnimationUtils.loadAnimation(this, R.anim.button_slide); in onResume()
317 Animation anim = AnimationUtils.loadAnimation(this, R.anim.button_slide); in onResume()
377 protected class StartActivityAfterAnimation implements Animation.AnimationListener {
385 public void onAnimationEnd(Animation animation) { in onAnimationEnd()
400 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat()
[all …]
DButtonAnimationComponent.java22 public static final class Animation { class in ButtonAnimationComponent
54 if (mSprite.getCurrentAnimation() == Animation.UP) { in update()
60 mSprite.playAnimation(Animation.DOWN); in update()
68 mSprite.playAnimation(Animation.UP); in update()
/external/skqp/modules/skottie/include/
DSkottie.h115 class SK_API Animation : public SkNVRefCnt<Animation> {
169 sk_sp<Animation> make(SkStream*);
170 sk_sp<Animation> make(const char* data, size_t length);
171 sk_sp<Animation> makeFromFile(const char path[]);
187 static sk_sp<Animation> Make(const char* data, size_t length);
188 static sk_sp<Animation> Make(SkStream*);
189 static sk_sp<Animation> MakeFromFile(const char path[]);
191 ~Animation();
220 Animation(std::unique_ptr<sksg::Scene>, SkString ver, const SkSize& size,
230 typedef SkNVRefCnt<Animation> INHERITED;
/external/skqp/experimental/canvaskit/
Dskottie_bindings.cpp33 auto animation = skottie::Animation::Builder() in Make()
99 ManagedAnimation(sk_sp<skottie::Animation> animation, in ManagedAnimation()
104 sk_sp<skottie::Animation> fAnimation;
113 class_<skottie::Animation>("Animation") in EMSCRIPTEN_BINDINGS()
114 .smart_ptr<sk_sp<skottie::Animation>>("sk_sp<Animation>") in EMSCRIPTEN_BINDINGS()
115 .function("version", optional_override([](skottie::Animation& self)->std::string { in EMSCRIPTEN_BINDINGS()
118 .function("size", &skottie::Animation::size) in EMSCRIPTEN_BINDINGS()
119 .function("duration", &skottie::Animation::duration) in EMSCRIPTEN_BINDINGS()
120 .function("seek", &skottie::Animation::seek) in EMSCRIPTEN_BINDINGS()
121 .function("render", optional_override([](skottie::Animation& self, SkCanvas* canvas)->void { in EMSCRIPTEN_BINDINGS()
[all …]
/external/skia/modules/skottie/include/
DSkottie.h65 class SK_API Animation : public SkNVRefCnt<Animation> {
132 sk_sp<Animation> make(SkStream*);
133 sk_sp<Animation> make(const char* data, size_t length);
134 sk_sp<Animation> makeFromFile(const char path[]);
153 static sk_sp<Animation> Make(const char* data, size_t length);
154 static sk_sp<Animation> Make(SkStream*);
155 static sk_sp<Animation> MakeFromFile(const char path[]);
157 ~Animation();
242 Animation(std::unique_ptr<sksg::Scene>,
257 using INHERITED = SkNVRefCnt<Animation>;
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowAnimationSetTest.java6 import android.view.animation.Animation;
18 final Animation.AnimationListener moveListener = mock(Animation.AnimationListener.class);
19 final Animation.AnimationListener spinListener = mock(Animation.AnimationListener.class);
25 final Animation move = new TranslateAnimation(0, 100, 0, 100); in start_shouldRunAnimation()
29 final Animation spin = new RotateAnimation(0, 360); in start_shouldRunAnimation()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
DTestAnimationListener.java3 import android.view.animation.Animation;
4 import android.view.animation.Animation.AnimationListener;
13 public void onAnimationStart(Animation animation) { in onAnimationStart()
18 public void onAnimationEnd(Animation animation) { in onAnimationEnd()
23 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat()
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DViewAnimationFactory.java4 import android.view.animation.Animation;
17 public ViewAnimationFactory(Animation animation) { in ViewAnimationFactory()
52 private final Animation animation;
54 public ConcreteAnimationFactory(Animation animation) { in ConcreteAnimationFactory()
59 public Animation build() { in build()
74 public Animation build() { in build()
DViewAnimation.java4 import android.view.animation.Animation;
39 Animation animation = animationFactory.build(); in animate()
47 Animation build(); in build()
/external/skqp/bench/
DSKPAnimationBench.h20 class Animation : public SkRefCnt {
25 virtual ~Animation() {} in ~Animation()
28 SKPAnimationBench(const char* name, const SkPicture*, const SkIRect& devClip, Animation*,
31 static Animation* CreateZoomAnimation(SkScalar zoomMax, double zoomPeriodMs);
43 sk_sp<Animation> fAnimation;
/external/skia/experimental/skottiekit/
Dskottiekit_bindings.cpp111 auto animation = skottie::Animation::Builder() in Make()
192 ManagedAnimation(sk_sp<skottie::Animation> animation, in ManagedAnimation()
197 sk_sp<skottie::Animation> fAnimation;
354 class_<skottie::Animation>("Animation") in EMSCRIPTEN_BINDINGS()
355 .smart_ptr<sk_sp<skottie::Animation>>("sk_sp<Animation>") in EMSCRIPTEN_BINDINGS()
356 .function("version", optional_override([](skottie::Animation& self)->std::string { in EMSCRIPTEN_BINDINGS()
359 .function("size" , &skottie::Animation::size) in EMSCRIPTEN_BINDINGS()
360 .function("duration", &skottie::Animation::duration) in EMSCRIPTEN_BINDINGS()
361 .function("fps" , &skottie::Animation::fps) in EMSCRIPTEN_BINDINGS()
362 .function("seek", optional_override([](skottie::Animation& self, SkScalar t)->void { in EMSCRIPTEN_BINDINGS()
[all …]
/external/skia/bench/
DSKPAnimationBench.h21 class Animation : public SkRefCnt {
28 SKPAnimationBench(const char* name, const SkPicture*, const SkIRect& devClip, sk_sp<Animation>,
31 static sk_sp<Animation> MakeZoomAnimation(SkScalar zoomMax, double zoomPeriodMs);
43 sk_sp<Animation> fAnimation;
/external/skia/modules/canvaskit/
Dskottie_bindings.cpp161 auto animation = skottie::Animation::Builder() in Make()
272 ManagedAnimation(sk_sp<skottie::Animation> animation, in ManagedAnimation()
278 const sk_sp<skottie::Animation> fAnimation;
287 class_<skottie::Animation>("Animation") in EMSCRIPTEN_BINDINGS()
288 .smart_ptr<sk_sp<skottie::Animation>>("sk_sp<Animation>") in EMSCRIPTEN_BINDINGS()
289 .function("version", optional_override([](skottie::Animation& self)->std::string { in EMSCRIPTEN_BINDINGS()
292 .function("_size", optional_override([](skottie::Animation& self, in EMSCRIPTEN_BINDINGS()
297 .function("duration", &skottie::Animation::duration) in EMSCRIPTEN_BINDINGS()
298 .function("fps" , &skottie::Animation::fps) in EMSCRIPTEN_BINDINGS()
299 .function("seek", optional_override([](skottie::Animation& self, SkScalar t)->void { in EMSCRIPTEN_BINDINGS()
[all …]
/external/skqp/modules/skottie/gm/
DSkottieGM.cpp58 fAnimation = Animation::Builder() in onOnceBeforeDraw()
86 sk_sp<Animation> fAnimation;
108 fAnimation = Animation::Builder() in onOnceBeforeDraw()
157 sk_sp<Animation> fAnimation;
180 fAnimation = Animation::Builder() in onOnceBeforeDraw()
216 sk_sp<Animation> fAnimation;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAnimationBridge.java3 import android.view.animation.Animation;
14 private Animation realAnimation;
16 public ShadowAnimationBridge(Animation realAnimation) { in ShadowAnimationBridge()
/external/skia/modules/skottie/gm/
DSkottieGM.cpp56 fAnimation = skottie::Animation::Builder() in onOnceBeforeDraw()
86 sk_sp<skottie::Animation> fAnimation;
112 fAnimation = skottie::Animation::Builder() in onOnceBeforeDraw()
172 sk_sp<skottie::Animation> fAnimation;
197 fAnimation = skottie::Animation::Builder() in onOnceBeforeDraw()
237 sk_sp<skottie::Animation> fAnimation;

12345