/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/ |
H A D | rs_property_animation.cpp | 99 endValue_ = originValue_ + byValue_; in InitInterpolationValue() 101 byValue_ = endValue_ - startValue_; in InitInterpolationValue() 108 auto endValue = endValue_; in OnUpdateStagingValue() 134 auto targetValue = endValue_; in UpdateStagingValueOnInteractiveFinish() 138 targetValue = endValue_; in UpdateStagingValueOnInteractiveFinish() 182 if (endValue_) { in DumpAnimationInfo() 184 RSAnimationTraceUtils::GetInstance().ParseRenderPropertyVaule(endValue_->GetRenderProperty(), type); in DumpAnimationInfo()
|
H A D | rs_curve_animation.cpp | 41 endValue_ = endValue; in RSCurveAnimation() 83 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty()); in OnStart()
|
H A D | rs_path_animation.cpp | 42 endValue_ = endValue; in RSPathAnimation() 43 InitNeedPath(startValue_, endValue_); in RSPathAnimation() 143 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty(), in OnStart() 179 InitInterpolationVector2f(startValue_, endValue_)) { in InitInterpolationValue() 183 InitInterpolationVector4f(startValue_, endValue_)) { in InitInterpolationValue() 188 byValue_ = endValue_ - startValue_; in InitInterpolationValue()
|
H A D | rs_interpolating_spring_animation.cpp | 42 endValue_ = endValue; in RSInterpolatingSpringAnimation() 74 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty()); in OnStart()
|
H A D | rs_spring_animation.cpp | 43 endValue_ = endValue; in RSSpringAnimation() 75 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty()); in OnStart()
|
H A D | rs_keyframe_animation.cpp | 88 endValue_ = std::get<DURATION_VALUE_INDEX>(durationKeyframes_.back()); in InitInterpolationValue() 103 endValue_ = std::get<VALUE_INDEX>(keyframes_.back()); in InitInterpolationValue()
|
H A D | rs_property_animation.h | 67 std::shared_ptr<RSPropertyBase> endValue_ {};
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
H A D | rs_render_interpolating_spring_animation.cpp | 37 endValue_(endValue) in RSRenderInterpolatingSpringAnimation() 53 out += ", EndValue: " + RSAnimationTraceUtils::GetInstance().ParseRenderPropertyVaule(endValue_, type); in DumpAnimationInfo() 85 RSRenderPropertyBase::Marshalling(parcel, endValue_))) { in Marshalling() 122 RSRenderPropertyBase::Unmarshalling(parcel, endValue_))) { in ParseParam() 199 auto interpolationValue = valueEstimator_->Estimate(displacement, startValue_, endValue_); in OnAnimate() 200 auto endValue = animationFraction_.GetCurrentIsReverseCycle() ? startValue_ : endValue_; in OnAnimate() 231 valueEstimator_->InitCurveAnimationValue(property_, startValue_, endValue_, lastValue_); in InitValueEstimator() 246 auto velocity = (valueEstimator_->Estimate(nextDisplacement, startValue_, endValue_) - in CalculateVelocity() 247 valueEstimator_->Estimate(currentDisplacement, startValue_, endValue_)) * (1 / TIME_INTERVAL); in CalculateVelocity()
|
H A D | rs_render_curve_animation.cpp | 28 startValue_(startValue), endValue_(endValue) in RSRenderCurveAnimation() 42 out += ", EndValue: " + RSAnimationTraceUtils::GetInstance().ParseRenderPropertyVaule(endValue_, type); in DumpAnimationInfo() 62 RSRenderPropertyBase::Marshalling(parcel, endValue_) && interpolator_ != nullptr && in Marshalling() 89 RSRenderPropertyBase::Unmarshalling(parcel, endValue_))) { in ParseParam() 153 valueEstimator_->InitCurveAnimationValue(property_, startValue_, endValue_, lastValue_); in InitValueEstimator()
|
H A D | rs_render_spring_animation.cpp | 40 : RSRenderPropertyAnimation(id, propertyId, originValue), startValue_(startValue), endValue_(endValue) in RSRenderSpringAnimation() 56 out += ", EndValue: " + RSAnimationTraceUtils::GetInstance().ParseRenderPropertyVaule(endValue_, type); in DumpAnimationInfo() 86 RSRenderPropertyBase::Marshalling(parcel, endValue_))) { in Marshalling() 126 RSRenderPropertyBase::Unmarshalling(parcel, endValue_))) { in ParseParam() 173 auto targetValue = animationFraction_.GetCurrentIsReverseCycle() ? startValue_ : endValue_; in OnAnimate() 318 return { startValue_, endValue_, initialVelocity_ }; in GetSpringStatus() 323 return { startValue_, endValue_, initialVelocity_ }; in GetSpringStatus() 329 return { springValueEstimator_->GetAnimationProperty(), endValue_, velocity }; in GetSpringStatus() 405 springValueEstimator_->InitRSSpringValueEstimator(property_, startValue_, endValue_, lastValue_); in InitValueEstimator()
|
H A D | rs_value_estimator.cpp | 72 auto byValue = endValue_ - startValue_; in EstimateFraction() 76 auto interpolationValue = startValue_ * (1.0f - fraction) + endValue_ * fraction; in EstimateFraction()
|
H A D | rs_render_path_animation.cpp | 32 originRotation_(originRotation), startValue_(startPosition), endValue_(endPosition), in RSRenderPathAnimation() 137 RSRenderPropertyBase::Marshalling(parcel, endValue_) && parcel.WriteUint64(rotationId_))) { in Marshalling() 179 RSRenderPropertyBase::Unmarshalling(parcel, endValue_) && parcel.ReadUint64(rotationId_))) { in ParseParam() 361 valueEstimator_->InitCurveAnimationValue(property_, startValue_, endValue_, lastValue_); in InitValueEstimator()
|
/foundation/arkui/ace_engine/test/mock/core/animation/ |
H A D | mock_animation_proxy.h | 44 prop.endValue_ = targetValue; in RecordPropChange() 54 return it->second.endValue_; in GetEndValue() 73 T delta = (it->second.endValue_ - it->second.stagingValue_) / remainingTicks; in Next() 89 T endValue_; member
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/ |
H A D | rs_value_estimator.h | 99 endValue_ = animatableEndValue->Get(); 114 auto interpolationValue = RSValueEstimator::Estimate(fraction, startValue_, endValue_); in GetAnimationValue() 153 T endValue_ {}; 411 endValue_ = animatableEndValue->Get(); 414 springModel_->initialOffset_ = startValue_ - endValue_; 428 springModel_->initialOffset_ = startValue_ - endValue_; 446 currentValue = endValue_; in GetAnimationValue() 448 currentValue = springModel_->CalculateDisplacement(time) + endValue_; in GetAnimationValue() 492 T endValue_ {};
|
H A D | rs_render_transition_effect.h | 120 : property_(property), startValue_(startValue), endValue_(endValue) in RSTransitionCustom() 148 valueEstimator_->InitCurveAnimationValue(property_, endValue_, startValue_, startValue_); in InitValueEstimator() 153 std::shared_ptr<RSRenderPropertyBase> endValue_; member in OHOS::Rosen::RSTransitionCustom
|
H A D | rs_render_interpolating_spring_animation.h | 61 std::shared_ptr<RSRenderPropertyBase> endValue_; member in OHOS::Rosen::RSRenderInterpolatingSpringAnimation
|
H A D | rs_render_curve_animation.h | 59 std::shared_ptr<RSRenderPropertyBase> endValue_ {};
|
H A D | rs_render_spring_animation.h | 76 std::shared_ptr<RSRenderPropertyBase> endValue_; member in OHOS::Rosen::RSRenderSpringAnimation
|
H A D | rs_render_path_animation.h | 100 std::shared_ptr<RSRenderPropertyBase> endValue_ {};
|
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | animatable_base.h | 38 if (endValue == endValue_) { in AnimateTo() 41 endValue_ = endValue; in AnimateTo() 158 T endValue_ {};
|
H A D | animatable_transform_operation.h | 145 endValue_ = blended; in SetTransformOperations()
|
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_picker.cpp | 109 endValue_(0), in UIPicker() 180 endValue_ = end; in SetValues() 199 } else if ((startValue_ != 0) || (endValue_ != 0)) { in Refresh() 200 RefreshValues(startValue_, endValue_); in Refresh()
|
/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | ui_picker.h | 569 int16_t endValue_; member in OHOS::UIPicker
|
/foundation/arkui/ace_engine/frameworks/core/components/button/ |
H A D | render_button.h | 236 double endValue_ = 0.0; member in OHOS::Ace::RenderButton
|
H A D | render_button.cpp | 719 if ((!isClickAnimation_ && NearEqual(value, endValue_)) || (valueChanged_ && NearEqual(value, startValue_))) { in UpdateAnimationParam() 759 endValue_ = end; in PlayAnimation() 837 endValue_ = TV_REDUCE_SCALE; in PlayClickAnimation()
|