Home
last modified time | relevance | path

Searched refs:animation (Results 1 – 25 of 144) sorted by relevance

123456

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DAnimationTest.java4 import android.view.animation.Animation;
5 import android.view.animation.LinearInterpolator;
6 import android.view.animation.Transformation;
20 private TestAnimation animation; field in AnimationTest
26 animation = new TestAnimation(); in setUp()
27 shadow = shadowOf(animation); in setUp()
29 animation.setAnimationListener(listener); in setUp()
35 animation.start(); in startShouldInvokeStartCallback()
44 animation.cancel(); in cancelShouldInvokeEndCallback()
70 assertThat(animation.interpolatedTime, equalTo(0f)); in simulateAnimationEndShouldInvokeApplyTransformationWith1()
[all …]
DTranslateAnimationTest.java3 import android.view.animation.Animation;
4 import android.view.animation.TranslateAnimation;
17 private TranslateAnimation animation; field in TranslateAnimationTest
22 animation = new TranslateAnimation(1, 2, 3, 4, 5, 6, 7, 8); in setUp()
23 shadow = shadowOf(animation); in setUp()
DImageViewTest.java81 Drawable animation = imageView.getDrawable(); in testSetAnimatedImage_drawable() local
82 assertTrue(animation instanceof Drawable); in testSetAnimatedImage_drawable()
83 assertTrue(animation instanceof AnimationDrawable); in testSetAnimatedImage_drawable()
89 AnimationDrawable animation = (AnimationDrawable) imageView.getDrawable(); in testSetAnimationItem() local
90 assertEquals(3, animation.getNumberOfFrames()); in testSetAnimationItem()
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DAnimChannel.java33 package com.jme3.animation;
58 private Animation animation; field in AnimChannel
119 return animation != null ? animation.getName() : null; in getAnimationName()
192 return animation != null ? animation.getLength() : 0f; in getAnimMaxTime()
220 if (animation != null && blendTime > 0f){ in setAnim()
222 blendFrom = animation; in setAnim()
230 animation = anim; in setAnim()
321 if (animation == null) in update()
343 animation.setTime(time, blendAmount, control, this, vars); in update()
347 if (animation.getLength() > 0){ in update()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DViewAnimationFactory.java1 package com.bumptech.glide.request.animation;
4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
17 public ViewAnimationFactory(Animation animation) { in ViewAnimationFactory() argument
18 this(new ConcreteAnimationFactory(animation)); in ViewAnimationFactory()
52 private final Animation animation; field in ViewAnimationFactory.ConcreteAnimationFactory
54 public ConcreteAnimationFactory(Animation animation) { in ConcreteAnimationFactory() argument
55 this.animation = animation; in ConcreteAnimationFactory()
60 return animation; in build()
DDrawableCrossFadeFactory.java1 package com.bumptech.glide.request.animation;
5 import android.view.animation.AlphaAnimation;
6 import android.view.animation.Animation;
26 private DrawableCrossFadeViewAnimation<T> animation; field in DrawableCrossFadeFactory
55 if (animation == null) { in build()
57 animation = new DrawableCrossFadeViewAnimation<T>(defaultAnimation, duration); in build()
60 return animation; in build()
67 AlphaAnimation animation = new AlphaAnimation(0f, 1f); in build() local
68 animation.setDuration(DEFAULT_DURATION_MS / 2); in build()
69 return animation; in build()
DViewPropertyAnimationFactory.java1 package com.bumptech.glide.request.animation;
10 private ViewPropertyAnimation<R> animation; field in ViewPropertyAnimationFactory
28 if (animation == null) { in build()
29 animation = new ViewPropertyAnimation<R>(animator); in build()
32 return animation; in build()
DViewAnimation.java1 package com.bumptech.glide.request.animation;
4 import android.view.animation.Animation;
39 Animation animation = animationFactory.build(); in animate() local
40 view.startAnimation(animation); in animate()
/external/clang/test/Analysis/
Dpr_2542_rdar_6793404.m38 // of the animation or when it receives stopAnimation.
41 - (void)animationDidEnd:(NSAnimation *)animation;
47 // 'animation' when it is sent the message 'setDelegate:'.
48 NSAnimation *animation = [[NSAnimation alloc] // no-warning
52 [animation setDelegate:self];
53 [animation startAnimation];
57 NSAnimation *animation = [[NSAnimation alloc] // expected-warning{{leak}}
61 [animation startAnimation];
64 - (void)animationDidEnd:(NSAnimation *)animation {
65 [animation release];
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
DObjectAnimationModifier.java8 import com.jme3.animation.AnimControl;
9 import com.jme3.animation.Animation;
10 import com.jme3.animation.SpatialTrack;
54 Animation animation = new Animation(objectAnimationName, ipo.getLastFrame() / fps); in ObjectAnimationModifier() local
55 animation.setTracks(new SpatialTrack[] { track }); in ObjectAnimationModifier()
57 animations.add(animation); in ObjectAnimationModifier()
75 Animation animation = animList.get(i); in apply() local
76 anims.put(animation.getName(), animation); in apply() local
DArmatureModifier.java12 import com.jme3.animation.AnimControl;
13 import com.jme3.animation.Animation;
14 import com.jme3.animation.Bone;
15 import com.jme3.animation.BoneTrack;
16 import com.jme3.animation.Skeleton;
17 import com.jme3.animation.SkeletonControl;
208 Animation animation = animList.get(i); in apply() local
209 anims.put(animation.getName(), animation); in apply() local
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
DConstraint.java3 import com.jme3.animation.Animation;
4 import com.jme3.animation.Bone;
5 import com.jme3.animation.BoneTrack;
6 import com.jme3.animation.Skeleton;
7 import com.jme3.animation.SpatialTrack;
8 import com.jme3.animation.Track;
101 protected BlenderTrack getTrack(Object owner, Skeleton skeleton, Animation animation) { in getTrack() argument
104 for (Track track : animation.getTracks()) { in getTrack()
111 return new BlenderTrack((SpatialTrack)animation.getTracks()[0]); in getTrack()
DBlenderTrack.java5 import com.jme3.animation.AnimChannel;
6 import com.jme3.animation.AnimControl;
7 import com.jme3.animation.BoneTrack;
8 import com.jme3.animation.SpatialTrack;
9 import com.jme3.animation.Track;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
DTestAnimationListener.java3 import android.view.animation.Animation;
4 import android.view.animation.Animation.AnimationListener;
13 public void onAnimationStart(Animation animation) { in onAnimationStart() argument
18 public void onAnimationEnd(Animation animation) { in onAnimationEnd() argument
23 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat() argument
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
DSkeletonLoader.java34 import com.jme3.animation.Animation;
35 import com.jme3.animation.Bone;
36 import com.jme3.animation.BoneTrack;
37 import com.jme3.animation.Skeleton;
69 private Animation animation; field in SkeletonLoader
128 animation = new Animation(name, length); in startElement()
168 animations.add(animation); in endElement()
169 animation = null; in endElement()
177 animation.setTracks(trackList); in endElement()
235 animation = null; in fullReset()
/external/glide/library/src/main/java/com/bumptech/glide/
DGifRequestBuilder.java5 import android.view.animation.Animation;
19 import com.bumptech.glide.request.animation.DrawableCrossFadeFactory;
20 import com.bumptech.glide.request.animation.ViewPropertyAnimation;
251 public GifRequestBuilder<ModelType> crossFade(Animation animation, int duration) { in crossFade() argument
252 super.animate(new DrawableCrossFadeFactory<GifDrawable>(animation, duration)); in crossFade()
290 public GifRequestBuilder<ModelType> animate(Animation animation) { in animate() argument
291 super.animate(animation); in animate()
DDrawableRequestBuilder.java6 import android.view.animation.Animation;
25 import com.bumptech.glide.request.animation.DrawableCrossFadeFactory;
26 import com.bumptech.glide.request.animation.ViewPropertyAnimation;
262 public DrawableRequestBuilder<ModelType> crossFade(Animation animation, int duration) { in crossFade() argument
263 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(animation, duration)); in crossFade()
309 public DrawableRequestBuilder<ModelType> animate(Animation animation) { in animate() argument
310 super.animate(animation); in animate()
DGenericRequestBuilder.java5 import android.view.animation.Animation;
28 import com.bumptech.glide.request.animation.GlideAnimationFactory;
29 import com.bumptech.glide.request.animation.NoAnimation;
30 import com.bumptech.glide.request.animation.ViewAnimationFactory;
31 import com.bumptech.glide.request.animation.ViewPropertyAnimation;
32 import com.bumptech.glide.request.animation.ViewPropertyAnimationFactory;
360 GlideAnimationFactory<TranscodeType> animation = NoAnimation.getFactory(); in dontAnimate() local
361 return animate(animation); in dontAnimate()
391 …ericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate(Animation animation) { in animate() argument
392 return animate(new ViewAnimationFactory<TranscodeType>(animation)); in animate()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowAnimationUtils.java4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
6 import android.view.animation.TranslateAnimation;
DShadowAnimation.java3 import android.view.animation.Animation;
4 import android.view.animation.Interpolator;
5 import android.view.animation.ShadowAnimationBridge;
6 import android.view.animation.Transformation;
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
DHelloAnimation.java35 import com.jme3.animation.AnimChannel;
36 import com.jme3.animation.AnimControl;
37 import com.jme3.animation.AnimEventListener;
38 import com.jme3.animation.LoopMode;
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
DGlideDrawableImageViewTarget.java6 import com.bumptech.glide.request.animation.GlideAnimation;
51 …lic void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> animation) { in onResourceReady() argument
66 super.onResourceReady(resource, animation); in onResourceReady()
/external/replicaisland/src/com/replica/replicaisland/
DDifficultyMenuActivity.java12 import android.view.animation.Animation;
13 import android.view.animation.AnimationUtils;
139 public void onAnimationEnd(Animation animation) { in onAnimationEnd() argument
160 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat() argument
165 public void onAnimationStart(Animation animation) { in onAnimationStart() argument
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
DTestOgreComplexAnim.java35 import com.jme3.animation.AnimChannel;
36 import com.jme3.animation.AnimControl;
37 import com.jme3.animation.Bone;
38 import com.jme3.animation.LoopMode;
/external/skia/tools/skpdiff/
Dviewer_style.css102 -webkit-animation-duration: 0.5s;
103 -webkit-animation-name: greenflash;
107 -webkit-animation-duration: 0.8s;
108 -webkit-animation-name: redflash;

123456