Home
last modified time | relevance | path

Searched refs:animator (Results 1 – 25 of 27) sorted by relevance

12

/third_party/flutter/skia/modules/skottie/src/text/
DTextAnimator.cpp157 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 …]
DTextAdapter.cpp198 for (const auto& animator : animators) { in applyAnimators() local
199 animator->modulateProps(fMaps, buf); in applyAnimators()
/third_party/skia/modules/skottie/src/animator/
DAnimator.cpp20 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/
Dskottie.gni33 "$_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/
DBUILD.gn37 "../../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/
DNeverEndingSplashView.java26 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/
DMotionBlurEffect.cpp16 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))
DMotionBlurEffect.h19 static sk_sp<MotionBlurEffect> Make(sk_sp<sksg::Animator> animator,
34 MotionBlurEffect(sk_sp<sksg::Animator> animator,
/third_party/flutter/skia/modules/skottie/src/
DSkottieAnimator.cpp240 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()
DSkottieAdapter.cpp41 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/
DHelloCanvasAR.java119 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/
DMotionBlurEffect.h21 static sk_sp<MotionBlurEffect> Make(sk_sp<Animator> animator,
41 MotionBlurEffect(sk_sp<Animator> animator,
DMotionBlurEffect.cpp37 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/
DTextAdapter.cpp236 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/
DBUILD.gn61 "animator.cc",
62 "animator.h",
Dace_engine.cc40 std::unique_ptr<Animator> animator, in Engine() argument
44 animator_(std::move(animator)), in Engine()
Dengine.h226 std::unique_ptr<Animator> animator,
Dengine.cc43 std::unique_ptr<Animator> animator, in Engine() argument
47 animator_(std::move(animator)), in Engine()
Dace_shell.cc140 auto animator = std::make_unique<Animator>(*shell, task_runners, in CreateShellOnPlatformThread() local
146 std::move(animator), // in CreateShellOnPlatformThread()
Dshell.cc121 auto animator = std::make_unique<Animator>(*shell, task_runners, in CreateShellOnPlatformThread() local
130 std::move(animator), // in CreateShellOnPlatformThread()
/third_party/skia/
Dpublic.bzl884 "modules/skottie/src/animator/*.cpp",
885 "modules/skottie/src/animator/*.h",
/third_party/flutter/flutter/packages/flutter/test/material/
Dprogress_indicator_test.dart277 …testWidgets('Determinate CircularProgressIndicator stops the animator', (WidgetTester tester) asyn…
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dscaffold.dart164 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…
Dfloating_action_button_location.dart337 /// This animator shrinks the [FloatingActionButton] down until it disappears, then
/third_party/flutter/build/
DBUILD.gn412 "$flutter_root/engine/flutter/shell/common/animator.cc",

12