Home
last modified time | relevance | path

Searched refs:endValue_ (Results 1 - 25 of 25) sorted by relevance

/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_property_animation.cpp99 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 Drs_curve_animation.cpp41 endValue_ = endValue; in RSCurveAnimation()
83 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty()); in OnStart()
H A Drs_path_animation.cpp42 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 Drs_interpolating_spring_animation.cpp42 endValue_ = endValue; in RSInterpolatingSpringAnimation()
74 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty()); in OnStart()
H A Drs_spring_animation.cpp43 endValue_ = endValue; in RSSpringAnimation()
75 originValue_->GetRenderProperty(), startValue_->GetRenderProperty(), endValue_->GetRenderProperty()); in OnStart()
H A Drs_keyframe_animation.cpp88 endValue_ = std::get<DURATION_VALUE_INDEX>(durationKeyframes_.back()); in InitInterpolationValue()
103 endValue_ = std::get<VALUE_INDEX>(keyframes_.back()); in InitInterpolationValue()
H A Drs_property_animation.h67 std::shared_ptr<RSPropertyBase> endValue_ {};
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_render_interpolating_spring_animation.cpp37 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 Drs_render_curve_animation.cpp28 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 Drs_render_spring_animation.cpp40 : 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 Drs_value_estimator.cpp72 auto byValue = endValue_ - startValue_; in EstimateFraction()
76 auto interpolationValue = startValue_ * (1.0f - fraction) + endValue_ * fraction; in EstimateFraction()
H A Drs_render_path_animation.cpp32 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 Dmock_animation_proxy.h44 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 Drs_value_estimator.h99 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 Drs_render_transition_effect.h120 : 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 Drs_render_interpolating_spring_animation.h61 std::shared_ptr<RSRenderPropertyBase> endValue_; member in OHOS::Rosen::RSRenderInterpolatingSpringAnimation
H A Drs_render_curve_animation.h59 std::shared_ptr<RSRenderPropertyBase> endValue_ {};
H A Drs_render_spring_animation.h76 std::shared_ptr<RSRenderPropertyBase> endValue_; member in OHOS::Rosen::RSRenderSpringAnimation
H A Drs_render_path_animation.h100 std::shared_ptr<RSRenderPropertyBase> endValue_ {};
/foundation/arkui/ace_engine/frameworks/core/animation/
H A Danimatable_base.h38 if (endValue == endValue_) { in AnimateTo()
41 endValue_ = endValue; in AnimateTo()
158 T endValue_ {};
H A Danimatable_transform_operation.h145 endValue_ = blended; in SetTransformOperations()
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_picker.cpp109 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 Dui_picker.h569 int16_t endValue_; member in OHOS::UIPicker
/foundation/arkui/ace_engine/frameworks/core/components/button/
H A Drender_button.h236 double endValue_ = 0.0; member in OHOS::Ace::RenderButton
H A Drender_button.cpp719 if ((!isClickAnimation_ && NearEqual(value, endValue_)) || (valueChanged_ && NearEqual(value, startValue_))) { in UpdateAnimationParam()
759 endValue_ = end; in PlayAnimation()
837 endValue_ = TV_REDUCE_SCALE; in PlayClickAnimation()

Completed in 18 milliseconds