/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | AnimationTest.java | 4 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 …]
|
D | TranslateAnimationTest.java | 3 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()
|
D | ImageViewTest.java | 81 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/glide/library/src/main/java/com/bumptech/glide/request/animation/ |
D | ViewAnimationFactory.java | 1 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()
|
D | DrawableCrossFadeFactory.java | 1 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()
|
D | ViewPropertyAnimationFactory.java | 1 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()
|
D | ViewAnimation.java | 1 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/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/ |
D | animation-constructor.js | 9 var animation = new Animation(document.body, [], 1000); 12 var player = document.timeline.play(animation); 58 var animation = new Animation(target, keyframes, 200); 59 assert.equal(animation.timing.duration, 200); 61 animation = new Animation(target, keyframes); 62 assert.isDefined(animation.timing); 64 animation = new Animation(target, keyframes, {duration: 200}); 65 var group = new AnimationGroup([animation]); 70 var animation = new Animation(null, function(tf) { 74 var player = document.timeline.play(animation);
|
/external/clang/test/Analysis/ |
D | pr_2542_rdar_6793404.m | 38 // 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/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | animation.js | 21 var animation = function() { function in scope.Animation 26 animation._update = function(localTime) { 30 animation._clear = function() { 33 animation._hasSameTarget = function(otherTarget) { 36 animation._isCurrent = animationNode._isCurrent; 37 animation._totalDuration = animationNode._totalDuration; 38 return animation;
|
D | animation-constructor.js | 55 scope.newUnderlyingPlayerForAnimation = function(animation) { argument 56 var target = animation.target || nullTarget; 57 var effect = animation._effect; 61 return originalElementAnimate.apply(target, [effect, animation._timingInput]);
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-spinner/ |
D | paper-spinner.css | 43 -webkit-animation: container-rotate 1568ms linear infinite; 44 animation: container-rotate 1568ms linear infinite; 81 * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't 82 * guarantee that the animation will start _exactly_ after that value. So we avoid using 83 * animation-delay and instead set custom keyframes for each color (as redundant as it 86 * We write out each animation in full (instead of separating animation-name, 87 * animation-duration, etc.) because under the polyfill, Safari does not recognize those 88 * specific properties properly, treats them as -webkit-animation, and overrides the 89 * other animation rules. See https://github.com/Polymer/platform/issues/53. 93 …-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both, blue-fa… [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/ |
D | TestAnimationListener.java | 3 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/skia/experimental/docs/ |
D | animationCommon.js | 37 var animation = animationState.timeline[index]; 38 if (animation.time > animationState.time) { 42 if (animation.time + animation.duration < animationState.time) { 43 if (animation.finalized) { 46 animation.finalized = true; 49 var actions = animation.actions; 156 if (!('start' in action) || action.start < animation.time) { 170 action.start = animation.time; 175 var value = Math.min(1, (animationState.time - animation.time) / animation.duration);
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
D | GifRequestBuilder.java | 5 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()
|
D | DrawableRequestBuilder.java | 6 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()
|
D | GenericRequestBuilder.java | 5 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()
|
D | DrawableOptions.java | 3 import android.view.animation.Animation; 50 GenericRequestBuilder<?, ?, ?, ?> crossFade(Animation animation, int duration); in crossFade() argument
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowAnimation.java | 3 import android.view.animation.Animation; 4 import android.view.animation.Interpolator; 5 import android.view.animation.ShadowAnimationBridge; 6 import android.view.animation.Transformation;
|
D | ShadowAnimationUtils.java | 4 import android.view.animation.Animation; 5 import android.view.animation.AnimationUtils; 6 import android.view.animation.TranslateAnimation;
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/ |
D | README.md | 13 By unifying the animation features of SVG and CSS, Web Animations unlocks 15 high-performance animation capabilities to developers. 30 Here's a simple example of an animation that scales and changes the opacity of 31 a `<div>` over 0.5 seconds. The animation alternates producing a pulsing 49 generation of animations and fine-grained control of animation playback. See 94 |Additive animation | | \* | | 96 |Modifiable animation timing| | \* | \* | 127 var animation = new Animation(elem, {"transform": "translate(100px, 100px)"}, 2000); 131 var animation = new Animation(elem, {"-webkit-transform": "translate(100px, 100px)"}, 2000);
|
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
D | GlideDrawableImageViewTarget.java | 6 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/ |
D | DifficultyMenuActivity.java | 12 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
|
D | ExtrasMenuActivity.java | 16 import android.view.animation.Animation; 17 import android.view.animation.AnimationUtils; 203 public void onAnimationEnd(Animation animation) { in onAnimationEnd() argument 223 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat() argument 228 public void onAnimationStart(Animation animation) { in onAnimationStart() argument
|
/external/chromium-trace/catapult/third_party/polymer/components/core-animation/ |
D | README.md | 1 core-animation 4 See the [component page](https://www.polymer-project.org/0.5/docs/elements/core-animation.html) for…
|