Home
last modified time | relevance | path

Searched refs:animate (Results 1 – 25 of 169) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
DjsdocTemplateTag.symbols36 Element.prototype.animate = function(keyframes) {};
37 >Element.prototype.animate : Symbol(Animatable.animate, Decl(lib.dom.d.ts, --, --))
41 >animate : Symbol(Animatable.animate, Decl(lib.dom.d.ts, --, --))
DjsdocTemplateTag.types44 Element.prototype.animate = function(keyframes) {};
45 >Element.prototype.animate = function(keyframes) {} : (keyframes: Array<any>) => void
46 >Element.prototype.animate : (keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | …
50 >animate : (keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationO…
/third_party/flutter/flutter/packages/flutter/test/widgets/
Ddrawer_test.dart38 await tester.pump(); // drawer should be starting to animate in
43 await tester.pump(); // drawer should be starting to animate away
63 await tester.pump(); // drawer should be starting to animate in
75 // drawer should be starting to animate away
105 await tester.pump(); // drawer should be starting to animate in
113 // drawer should be starting to animate away
159 await tester.pump(); // drawer should be starting to animate in
167 // drawer should be starting to animate away
221 await tester.pump(); // drawer should be starting to animate in
Dtransitions_test.dart61 decoration: decorationTween.animate(controller),
107 decorationTween.animate(CurvedAnimation(
157 ).animate(controller);
181 ).animate(controller);
199 final Animation<double> animation = Tween<double>(begin: -1.0, end: 1.0).animate(controller);
230 final Animation<double> animation = Tween<double>(begin: -1.0, end: 1.0).animate(controller);
Danimated_list_test.dart70 // Newly inserted item 0's height should animate from 0 to 100
86 // The height of the newly inserted items at index 0 and 1 should animate from 0 to 100.
164 // Newly removed item 0's height should animate from 100 to 0 over 100ms
Dscrollable_animations_test.dart10 testWidgets('Does not animate if already at target position', (WidgetTester tester) async {
33 …testWidgets('Does not animate if already at target position within tolerance', (WidgetTester teste…
Dpositioned_test.dart59 testWidgets('Can animate position data', (WidgetTester tester) async {
95 rect: rect.animate(controller),
/third_party/skia/third_party/externals/icu/source/data/misc/
DgrammaticalFeatures.txt246 "animate",
439 "animate",
651 "animate",
788 "animate",
912 "animate",
956 "animate",
/third_party/icu/icu4c/source/data/misc/
DgrammaticalFeatures.txt246 "animate",
439 "animate",
651 "animate",
788 "animate",
912 "animate",
956 "animate",
/third_party/flutter/skia/tools/viewer/
DGMSlide.cpp30 bool GMSlide::animate(double nanos) { return fGM->animate(nanos); } in animate() function in GMSlide
DSampleSlide.cpp27 bool SampleSlide::animate(double nanos) { return fSample->animate(nanos); } in animate() function in SampleSlide
DGMSlide.h22 bool animate(double nanos) override;
DSlideDir.cpp87 fSlide->animate(t * 1e6); in tick()
356 bool SlideDir::animate(double nanos) { in animate() function in SlideDir
364 fScene->animate(t); in animate()
DSlide.h26 virtual bool animate(double nanos) { return false; } in animate() function
/third_party/skia/tools/viewer/
DGMSlide.cpp43 bool GMSlide::animate(double nanos) { return fGM->animate(nanos); } in animate() function in GMSlide
DSampleSlide.cpp27 bool SampleSlide::animate(double nanos) { return fSample->animate(nanos); } in animate() function in SampleSlide
DGMSlide.h23 bool animate(double nanos) override;
DSampleSlide.h27 bool animate(double) override;
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dcircle_avatar.dart74 /// color will cause the avatar to animate to the new color.
91 /// image will cause the avatar to animate to the new image.
120 /// the avatar to animate from a 20 pixel diameter to a 40 pixel diameter.
136 /// the avatar to animate from a 20 pixel diameter to a 40 pixel diameter.
Dpage_transitions_theme.dart99 ).animate(primaryAnimation);
101 final Animation<double> opacityAnimation = _scrimOpacityTween.animate(primaryAnimation);
102 …final Animation<Offset> primaryTranslationAnimation = _primaryTranslationTween.animate(primaryAnim…
104 final Animation<Offset> secondaryTranslationAnimation = _secondaryTranslationTween.animate(
/third_party/flutter/flutter/packages/flutter/test/animation/
Dtween_test.dart22 test('Can animate tweens', () {
27 final Animation<double> animation = tween.animate(controller);
/third_party/gstreamer/gstreamer/docs/libs/controller/
Dindex.md3 `gstreamer-controller` provides functionality to animate element properties over time.
/third_party/typescript/tests/cases/conformance/jsdoc/
DjsdocTemplateTag.ts28 Element.prototype.animate = function(keyframes) {};
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/shrine/
Dexpanding_bottom_sheet.dart110 ).animate(parent);
156 return Tween<double>(begin: _width, end: screenWidth).animate(
190 ).animate(
204 return Tween<double>(begin: _kCornerRadius, end: 0.0).animate(
222 return Tween<double>(begin: 1.0, end: 0.0).animate(
462 final Animation<double> thumbnailSize = Tween<double>(begin: 0.8, end: 1.0).animate(
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Danimated_switcher.dart303 _addEntryForNewChild(animate: false);
325 _addEntryForNewChild(animate: true);
339 void _addEntryForNewChild({ @required bool animate }) {
340 assert(animate || _currentEntry == null);
342 assert(animate);
367 if (animate) {

1234567