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 D | rs_spring_animation_test.cpp | 50 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 D | rs_curve_animation_test.cpp | 51 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 D | rs_property_animation.cpp | 111 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 D | rs_curve_animation.cpp | 29 const std::shared_ptr<RSPropertyBase>& byValue) : RSPropertyAnimation(property) in RSCurveAnimation() argument 32 byValue_ = byValue; in RSCurveAnimation()
|
H A D | rs_interpolating_spring_animation.cpp | 29 std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue) in RSInterpolatingSpringAnimation() argument 33 byValue_ = byValue; in RSInterpolatingSpringAnimation()
|
H A D | rs_spring_animation.cpp | 31 const std::shared_ptr<RSPropertyBase>& byValue) : RSPropertyAnimation(property) in RSSpringAnimation() argument 34 byValue_ = byValue; in RSSpringAnimation()
|
H A D | rs_curve_animation.h | 31 …nimation(std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue);
|
H A D | rs_interpolating_spring_animation.h | 32 std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue);
|
H A D | rs_spring_animation.h | 31 …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 D | rs_value_estimator.cpp | 72 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 D | rs_animation_supplement_test.cpp | 907 …ationMock(std::shared_ptr<RSPropertyBase> property, const std::shared_ptr<RSPropertyBase>& byValue) in RSSpringAnimationMock() argument 908 : RSSpringAnimation(property, byValue) {} in RSSpringAnimationMock()
|