/third_party/flutter/skia/modules/skottie/src/text/ |
D | TextAnimator.cpp | 157 auto animator = sk_ref_sp(this); in TextAnimator() local 160 [animator](const VectorValue& p) { in TextAnimator() 161 animator->fTextProps.position = ValueTraits<VectorValue>::As<SkPoint>(p); in TextAnimator() 164 [animator](const ScalarValue& s) { in TextAnimator() 166 animator->fTextProps.scale = s * 0.01f; in TextAnimator() 169 [animator](const ScalarValue& r) { in TextAnimator() 170 animator->fTextProps.rotation = r; in TextAnimator() 173 [animator](const VectorValue& fc) { in TextAnimator() 174 animator->fTextProps.fill_color = ValueTraits<VectorValue>::As<SkColor>(fc); in TextAnimator() 177 [animator](const VectorValue& sc) { in TextAnimator() [all …]
|
D | TextAdapter.cpp | 198 for (const auto& animator : animators) { in applyAnimators() local 199 animator->modulateProps(fMaps, buf); in applyAnimators()
|
/third_party/skia/modules/skottie/src/animator/ |
D | Animator.cpp | 20 for (const auto& animator : fAnimators) { in onSeek() local 21 changed |= animator->seek(t); in onSeek() 93 sk_sp<KeyframeAnimator> animator; in bindImpl() local 96 animator = builder.makeFromKeyframes(abuilder, *jkfs); in bindImpl() 99 if (!animator) { in bindImpl() 104 if (animator->isConstant()) { in bindImpl() 107 animator->seek(0); in bindImpl() 109 fAnimators.push_back(std::move(animator)); in bindImpl()
|
/third_party/skia/modules/skottie/ |
D | skottie.gni | 33 "$_src/animator/Animator.cpp", 34 "$_src/animator/Animator.h", 35 "$_src/animator/KeyframeAnimator.cpp", 36 "$_src/animator/KeyframeAnimator.h", 37 "$_src/animator/ScalarKeyframeAnimator.cpp", 38 "$_src/animator/ShapeKeyframeAnimator.cpp", 39 "$_src/animator/TextKeyframeAnimator.cpp", 40 "$_src/animator/Vec2KeyframeAnimator.cpp", 41 "$_src/animator/VectorKeyframeAnimator.cpp", 42 "$_src/animator/VectorKeyframeAnimator.h",
|
/third_party/skia/tools/skottie_ios_app/ |
D | BUILD.gn | 37 "../../resources/skottie/skottie-text-animator-1.json", 38 "../../resources/skottie/skottie-text-animator-2.json", 39 "../../resources/skottie/skottie-text-animator-3.json", 40 "../../resources/skottie/skottie-text-animator-4.json", 41 "../../resources/skottie/skottie-text-animator-5.json", 42 "../../resources/skottie/skottie-text-animator-8.json",
|
/third_party/flutter/flutter/dev/integration_tests/android_splash_screens/splash_screen_load_rotate/android/app/src/main/java/io/flutter/splash_screen_load_rotate/ |
D | NeverEndingSplashView.java | 26 private ViewPropertyAnimator animator; field in NeverEndingSplashView 72 animator = animatedThing in animateTheThing() 78 animator.start(); in animateTheThing() 84 if (animator != null) { in onDetachedFromWindow() 86 animator.cancel(); in onDetachedFromWindow()
|
/third_party/flutter/skia/modules/skottie/src/effects/ |
D | MotionBlurEffect.cpp | 16 sk_sp<MotionBlurEffect> MotionBlurEffect::Make(sk_sp<sksg::Animator> animator, in Make() argument 30 return sk_sp<MotionBlurEffect>(new MotionBlurEffect(std::move(animator), in Make() 36 MotionBlurEffect::MotionBlurEffect(sk_sp<sksg::Animator> animator, in MotionBlurEffect() argument 40 , fAnimator(std::move(animator))
|
D | MotionBlurEffect.h | 19 static sk_sp<MotionBlurEffect> Make(sk_sp<sksg::Animator> animator, 34 MotionBlurEffect(sk_sp<sksg::Animator> animator,
|
/third_party/flutter/skia/modules/skottie/src/ |
D | SkottieAnimator.cpp | 240 sk_sp<KeyframeAnimator> animator(new KeyframeAnimator(*jv, abuilder, std::move(apply))); in Make() local 242 return animator->count() ? animator : nullptr; in Make() 345 auto animator = KeyframeAnimator<T>::Make(jpropK, abuilder, std::move(apply)); in BindPropertyImpl() local 347 if (!animator) { in BindPropertyImpl() 352 ascope->push_back(std::move(animator)); in BindPropertyImpl() 389 for (const auto& animator : fAnimators) { in onTick() local 390 animator->tick(t); in onTick()
|
D | SkottieAdapter.cpp | 41 for (auto& animator : fAnimators) { in onTick() local 42 animator->tick(t); in onTick()
|
/third_party/flutter/skia/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/examples/helloskar/app/ |
D | HelloCanvasAR.java | 119 ValueAnimator animator; field in HelloCanvasAR 178 animator = new ValueAnimator(); in onCreate() 179 animator.setValues(propertyRadius); in onCreate() 180 animator.setDuration(1000); in onCreate() 181 animator.setRepeatCount(ValueAnimator.INFINITE); in onCreate() 182 animator.setRepeatMode(ValueAnimator.REVERSE); in onCreate() 183 animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in onCreate() 189 animator.start(); in onCreate()
|
/third_party/skia/modules/skottie/src/effects/ |
D | MotionBlurEffect.h | 21 static sk_sp<MotionBlurEffect> Make(sk_sp<Animator> animator, 41 MotionBlurEffect(sk_sp<Animator> animator,
|
D | MotionBlurEffect.cpp | 37 sk_sp<MotionBlurEffect> MotionBlurEffect::Make(sk_sp<Animator> animator, in Make() argument 51 return sk_sp<MotionBlurEffect>(new MotionBlurEffect(std::move(animator), in Make() 57 MotionBlurEffect::MotionBlurEffect(sk_sp<Animator> animator, in MotionBlurEffect() argument 61 , fAnimator(std::move(animator))
|
/third_party/skia/modules/skottie/src/text/ |
D | TextAdapter.cpp | 236 if (auto animator = TextAnimator::Make(janimator, abuilder, adapter.get())) { in Make() local 237 adapter->fHasBlurAnimator |= animator->hasBlur(); in Make() 238 adapter->fRequiresAnchorPoint |= animator->requiresAnchorPoint(); in Make() 240 adapter->fAnimators.push_back(std::move(animator)); in Make() 560 for (const auto& animator : fAnimators) { in onSync() local 561 animator->modulateProps(fMaps, buf); in onSync()
|
/third_party/flutter/engine/flutter/shell/common/ |
D | BUILD.gn | 61 "animator.cc", 62 "animator.h",
|
D | ace_engine.cc | 40 std::unique_ptr<Animator> animator, in Engine() argument 44 animator_(std::move(animator)), in Engine()
|
D | engine.h | 226 std::unique_ptr<Animator> animator,
|
D | engine.cc | 43 std::unique_ptr<Animator> animator, in Engine() argument 47 animator_(std::move(animator)), in Engine()
|
D | ace_shell.cc | 140 auto animator = std::make_unique<Animator>(*shell, task_runners, in CreateShellOnPlatformThread() local 146 std::move(animator), // in CreateShellOnPlatformThread()
|
D | shell.cc | 121 auto animator = std::make_unique<Animator>(*shell, task_runners, in CreateShellOnPlatformThread() local 130 std::move(animator), // in CreateShellOnPlatformThread()
|
/third_party/skia/ |
D | public.bzl | 884 "modules/skottie/src/animator/*.cpp", 885 "modules/skottie/src/animator/*.h",
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | progress_indicator_test.dart | 277 …testWidgets('Determinate CircularProgressIndicator stops the animator', (WidgetTester tester) asyn…
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | scaffold.dart | 164 const _TransitionSnapshotFabLocation(this.begin, this.end, this.animator, this.progress); 168 final FloatingActionButtonAnimator animator; 173 return animator.getOffset( 1028 …/// If null, the [ScaffoldState] will use the default animator, [FloatingActionButtonAnimator.scal…
|
D | floating_action_button_location.dart | 337 /// This animator shrinks the [FloatingActionButton] down until it disappears, then
|
/third_party/flutter/build/ |
D | BUILD.gn | 412 "$flutter_root/engine/flutter/shell/common/animator.cc",
|