Home
last modified time | relevance | path

Searched refs:onTick (Results 1 – 19 of 19) sorted by relevance

/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dtest_vsync.dart16 Ticker createTicker(TickerCallback onTick) => Ticker(onTick);
Dwidget_tester.dart613 Ticker createTicker(TickerCallback onTick) {
615 final _TestTicker result = _TestTicker(onTick, _removeTicker);
787 _TestTicker(TickerCallback onTick, this._onDispose) : super(onTick);
/third_party/flutter/skia/modules/sksg/include/
DSkSGScene.h40 virtual void onTick(float t) = 0;
49 void onTick(float t) override;
/third_party/flutter/skia/modules/sksg/src/
DSkSGScene.cpp22 this->onTick(t); in tick()
28 void GroupAnimator::onTick(float t) { in onTick() function in sksg::GroupAnimator
/third_party/flutter/skia/modules/skottie/src/layers/
DPrecompLayer.cpp52 void onTick(float t) override { in attachPrecompLayer() function in skottie::internal::AnimationBuilder::attachPrecompLayer::CompTimeMapper
58 this->INHERITED::onTick((t + fTimeBias) * fTimeScale); in attachPrecompLayer()
DImageLayer.cpp71 void onTick(float t) override { in attachImageAsset() function in skottie::internal::AnimationBuilder::attachImageAsset::MultiFrameAnimator
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dticker_provider.dart81 Ticker createTicker(TickerCallback onTick) {
93 _ticker = Ticker(onTick, debugLabel: kDebugMode ? 'created by $this' : null);
159 Ticker createTicker(TickerCallback onTick) {
161 final _WidgetTicker result = _WidgetTicker(onTick, this, debugLabel: 'created by $this');
225 …_WidgetTicker(TickerCallback onTick, this._creator, { String debugLabel }) : super(onTick, debugLa…
/third_party/skia/tools/viewer/
DSlideDir.cpp33 void tick(float t) { this->onTick(t); } in tick()
38 virtual void onTick(float t) = 0;
71 void onTick(float t) override { in makeForwardingAnimator() function in __anon5572691b0111::SlideAdapter::makeForwardingAnimator::ForwardingAnimator
159 this->onTick(fTimeBase); in startFocus()
196 void onTick(float t) override { in onTick() function in SlideDir::FocusController
/third_party/flutter/flutter/examples/layers/rendering/
Dspinning_square.dart17 Ticker createTicker(TickerCallback onTick) => Ticker(onTick);
/third_party/flutter/skia/modules/skottie/src/text/
DTextAnimator.cpp224 void TextAnimatorList::onTick(float t) { in onTick() function in skottie::internal::TextAnimatorList
226 this->INHERITED::onTick(t); in onTick()
DTextAnimator.h87 void onTick(float) override;
/third_party/flutter/skia/modules/skottie/src/
DSkottieAnimator.cpp246 void onTick(float t) override { in onTick() function in skottie::internal::__anon0dc4a3ee0111::KeyframeAnimator
381 split_animator->onTick(0); in Make()
388 void onTick(float t) override { in onTick() function in skottie::internal::__anon0dc4a3ee0111::SplitPointAnimator
DComposition.cpp56 void onTick(float t) { in attachNestedAnimation() function in skottie::internal::AnimationBuilder::attachNestedAnimation::SkottieAnimatorAdapter
DLayer.cpp206 void onTick(float t) override { in onTick() function in skottie::internal::__anonf997c9cd0111::LayerController
240 void onTick(float t) override { in onTick() function in skottie::internal::__anonf997c9cd0111::MotionBlurController
DSkottieAdapter.h51 void onTick(float t) final;
DSkottieAdapter.cpp40 void DiscardableAdaptorBase::onTick(float t) { in onTick() function in skottie::internal::DiscardableAdaptorBase
/third_party/flutter/skia/tools/viewer/
DSlideDir.cpp58 void onTick(float t) override { in makeForwardingAnimator() function in __anon6b562d700111::SlideAdapter::makeForwardingAnimator::ForwardingAnimator
147 this->onTick(fTimeBase); in startFocus()
185 void onTick(float t) { in onTick() function in SlideDir::FocusController
/third_party/flutter/flutter/packages/flutter/lib/src/scheduler/
Dticker.dart38 Ticker createTicker(TickerCallback onTick);
230 // The onTick callback may have scheduled another tick already, for
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dproxy_box_test.dart488 Ticker createTicker(TickerCallback onTick, [ bool disableAnimations = false ]) {