/external/glide/library/src/main/java/com/bumptech/glide/ |
D | GifRequestBuilder.java | 233 super.animate(new DrawableCrossFadeFactory<GifDrawable>()); in crossFade() 242 super.animate(new DrawableCrossFadeFactory<GifDrawable>(duration)); in crossFade() 252 super.animate(new DrawableCrossFadeFactory<GifDrawable>(animation, duration)); in crossFade() 261 super.animate(new DrawableCrossFadeFactory<GifDrawable>(context, animationId, in crossFade() 279 public GifRequestBuilder<ModelType> animate(int animationId) { in animate() method in GifRequestBuilder 280 super.animate(animationId); in animate() 290 public GifRequestBuilder<ModelType> animate(Animation animation) { in animate() method in GifRequestBuilder 291 super.animate(animation); in animate() 299 public GifRequestBuilder<ModelType> animate(ViewPropertyAnimation.Animator animator) { in animate() method in GifRequestBuilder 300 super.animate(animator); in animate()
|
D | DrawableRequestBuilder.java | 246 super.animate(new DrawableCrossFadeFactory<GlideDrawable>()); in crossFade() 254 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(duration)); in crossFade() 263 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(animation, duration)); in crossFade() 271 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(context, animationId, in crossFade() 289 public DrawableRequestBuilder<ModelType> animate(ViewPropertyAnimation.Animator animator) { in animate() method in DrawableRequestBuilder 290 super.animate(animator); in animate() 298 public DrawableRequestBuilder<ModelType> animate(int animationId) { in animate() method in DrawableRequestBuilder 299 super.animate(animationId); in animate() 309 public DrawableRequestBuilder<ModelType> animate(Animation animation) { in animate() method in DrawableRequestBuilder 310 super.animate(animation); in animate()
|
D | BitmapRequestBuilder.java | 329 public BitmapRequestBuilder<ModelType, TranscodeType> animate(int animationId) { in animate() method in BitmapRequestBuilder 330 super.animate(animationId); in animate() 340 public BitmapRequestBuilder<ModelType, TranscodeType> animate(Animation animation) { in animate() method in BitmapRequestBuilder 341 super.animate(animation); in animate() 349 …public BitmapRequestBuilder<ModelType, TranscodeType> animate(ViewPropertyAnimation.Animator anima… in animate() method in BitmapRequestBuilder 350 super.animate(animator); in animate()
|
D | GenericRequestBuilder.java | 361 return animate(animation); in dontAnimate() 371 …public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate(int animati… in animate() method in GenericRequestBuilder 372 return animate(new ViewAnimationFactory<TranscodeType>(context, animationId)); in animate() 391 …public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate(Animation a… in animate() method in GenericRequestBuilder 392 return animate(new ViewAnimationFactory<TranscodeType>(animation)); in animate() 403 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate( in animate() method in GenericRequestBuilder 405 return animate(new ViewPropertyAnimationFactory<TranscodeType>(animator)); in animate() 408 GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate( in animate() method in GenericRequestBuilder
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/docs/ |
D | examples.md | 10 element.animate({ 38 element.animate([ 76 element.animate({ 108 - element.animate() returns an Animation object with basic playback controls. 113 var animation = element.animate({ 130 Transitioning states with element.animate() 132 - This is an example of how to animate from one state to another using Web Animations. 151 var animation = element.animate({ height: [fromHeight, toHeight] }, duration); 205 container.animate({ 218 box.animate({
|
D | support.md | 25 When the polyfill runs on a browser that implements `Element.animate()` and 35 * Element.animate() 48 element.animate({transform: ['none', 'translateX(100px)']}, 1000); 54 element.animate({webkitTransform: ['none', 'translateX(100px)']}, 1000);
|
D | experimental.md | 27 |Element.animate | ✔ | ✔ | ✔ | 49 Inline style modification is the mechanism used by the polyfill to animate
|
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/ |
D | ViewPropertyAnimation.java | 37 public boolean animate(R current, ViewAdapter adapter) { in animate() method in ViewPropertyAnimation 40 animator.animate(adapter.getView()); in animate() 54 void animate(View view); in animate() method
|
D | DrawableCrossFadeViewAnimation.java | 43 public boolean animate(T current, ViewAdapter adapter) { in animate() method in DrawableCrossFadeViewAnimation 52 defaultAnimation.animate(current, adapter); in animate()
|
D | GlideAnimation.java | 54 boolean animate(R current, ViewAdapter adapter); in animate() method
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | web-animations-bonus-object-form-keyframes.js | 37 animation = element.animate({'opacity': [testOpacity, testOpacity]}, 50 var originalElementAnimate = window.Element.prototype.animate; 51 window.Element.prototype.animate = function(effectInput, options) { method in window.Element
|
D | web-animations-bonus-cancel-events.js | 17 if (document.createElement('div').animate([]).oncancel !== undefined) { 43 var originalElementAnimate = window.Element.prototype.animate; 44 window.Element.prototype.animate = function(effectInput, options) { method in window.Element
|
D | element-animatable.js | 16 window.Element.prototype.animate = function(effectInput, options) { method in window.Element
|
D | keyframe-effect-constructor.js | 110 var originalElementAnimate = Element.prototype.animate; 111 Element.prototype.animate = function(effectInput, options) { method in Element
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowAbsSpinner.java | 19 protected void setSelection(int position, boolean animate) { in setSelection() argument 20 …Selection", ClassParameter.from(int.class, position), ClassParameter.from(boolean.class, animate)); in setSelection() 21 animatedTransition = animate; in setSelection()
|
/external/ImageMagick/utilities/ |
D | Makefile.am | 31 utilities/animate.1 \ 47 utilities/animate.1.in \ 68 MAGICK_UTILITIES=animate compare composite conjure convert display identify import magick-script mo…
|
/external/skqp/tools/viewer/ |
D | GMSlide.cpp | 30 bool GMSlide::animate(const SkAnimTimer& timer) { in animate() function in GMSlide 31 return fGM->animate(timer); in animate()
|
D | SampleSlide.h | 27 bool animate(const SkAnimTimer& timer) override { in animate() function 28 return fSample->animate(timer); in animate()
|
D | GMSlide.h | 22 bool animate(const SkAnimTimer&) override;
|
/external/skia/tools/viewer/ |
D | GMSlide.cpp | 43 bool GMSlide::animate(double nanos) { return fGM->animate(nanos); } in animate() function in GMSlide
|
D | SampleSlide.cpp | 27 bool SampleSlide::animate(double nanos) { return fSample->animate(nanos); } in animate() function in SampleSlide
|
/external/robolectric-shadows/shadows/supportv4/src/main/java/org/robolectric/shadows/support/v4/ |
D | ShadowDrawerLayout.java | 29 protected void openDrawer(View drawerView, boolean animate) { in openDrawer() argument 35 protected void closeDrawer(View drawerView, boolean animate) { in closeDrawer() argument
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/ |
D | History.md | 68 element.animate([], { 86 element.animate([{'font-size': '0px'}, {'font-size': '10px'}]); 90 element.animate([{fontSize: '0px'}, {fontSize: '10px'}]); 102 element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]); 106 element.animate({color: ['red', 'green', 'blue']}); 194 executed on top of a native `element.animate`. 207 var player = element.animate( 213 var player = element.animate( 249 are supported natively in browsers. Today that means Element.animate
|
D | README.md | 27 <!-- Set up a target to animate --> 33 var animation = elem.animate({ 50 * [MDN reference](https://developer.mozilla.org/en-US/docs/Web/API/Element/animate)
|
/external/ImageMagick/MagickWand/ |
D | Makefile.am | 24 MagickWand/animate.c \ 25 MagickWand/animate.h \ 81 MagickWand/animate.h \
|