Home
last modified time | relevance | path

Searched refs:byValue (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/animation/
H A Drs_spring_animation_test.cpp50 auto byValue = std::make_shared<RSPropertyBase>(); in HWTEST_F() local
51 RSSpringAnimation rsSpringAnimation(property, byValue); in HWTEST_F()
55 ASSERT_NE(byValue, nullptr); in HWTEST_F()
66 auto byValue = std::make_shared<RSPropertyBase>(); in HWTEST_F() local
67 RSSpringAnimation rsSpringAnimation(property, byValue);; in HWTEST_F()
70 ASSERT_NE(byValue, nullptr); in HWTEST_F()
81 auto byValue = std::make_shared<RSPropertyBase>(); in HWTEST_F() local
82 RSSpringAnimation rsSpringAnimation(property, byValue); in HWTEST_F()
88 ASSERT_NE(byValue, nullptr); in HWTEST_F()
H A Drs_curve_animation_test.cpp51 auto byValue = std::make_shared<RSPropertyBase>(); in HWTEST_F() local
52 RSCurveAnimation rsCurveAnimation(property, byValue); in HWTEST_F()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_property_animation.cpp111 auto byValue = endValue - startValue; in OnUpdateStagingValue() local
122 targetValue = IsReversed() ? currentValue + byValue : currentValue - byValue; in OnUpdateStagingValue()
124 targetValue = IsReversed() ? currentValue - byValue : currentValue + byValue; in OnUpdateStagingValue()
H A Drs_curve_animation.cpp29 const std::shared_ptr<RSPropertyBase>& byValue) : RSPropertyAnimation(property) in RSCurveAnimation() argument
32 byValue_ = byValue; in RSCurveAnimation()
H A Drs_interpolating_spring_animation.cpp29 std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue) in RSInterpolatingSpringAnimation() argument
33 byValue_ = byValue; in RSInterpolatingSpringAnimation()
H A Drs_spring_animation.cpp31 const std::shared_ptr<RSPropertyBase>& byValue) : RSPropertyAnimation(property) in RSSpringAnimation() argument
34 byValue_ = byValue; in RSSpringAnimation()
H A Drs_curve_animation.h31 …nimation(std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue);
H A Drs_interpolating_spring_animation.h32 std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue);
H A Drs_spring_animation.h31 …nimation(std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_value_estimator.cpp72 auto byValue = endValue_ - startValue_; in EstimateFraction() local
78 (byValue > 0) ? (end = mid) : (start = mid); in EstimateFraction()
80 (byValue > 0) ? (start = mid) : (end = mid); in EstimateFraction()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/
H A Drs_animation_supplement_test.cpp907 …ationMock(std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue) in RSSpringAnimationMock() argument
908 : RSSpringAnimation(property, byValue) {} in RSSpringAnimationMock()