/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | page_transition_option.cpp | 331 auto colorAnimation = AceType::MakeRefPtr<CurveAnimation<Color>>( in TransitionPhoneTweenOption() 354 auto colorAnimation = AceType::MakeRefPtr<CurveAnimation<Color>>( in TransitionPhoneTweenOption() 362 RefPtr<CurveAnimation<DimensionOffset>> translateAnimation; in CreateDialogModalTransitionInOption() 364 translateAnimation = AceType::MakeRefPtr<CurveAnimation<DimensionOffset>>( in CreateDialogModalTransitionInOption() 368 translateAnimation = AceType::MakeRefPtr<CurveAnimation<DimensionOffset>>( in CreateDialogModalTransitionInOption() 382 auto widthAnimation = AceType::MakeRefPtr<CurveAnimation<float>>( in CreateTransitionInOption() 405 RefPtr<CurveAnimation<DimensionOffset>> translateAnimation; in CreateDialogModalTransitionOutOption() 430 auto widthAnimation = AceType::MakeRefPtr<CurveAnimation<float>>( in CreateTransitionOutOption() 438 auto colorAnimation = AceType::MakeRefPtr<CurveAnimation<Color>>( in CreateTransitionOutOption() 461 RefPtr<CurveAnimation<DimensionOffset>> translateAnimation; in CreateTransitionInOption() [all …]
|
H A D | animatable_path.cpp | 77 RefPtr<CurveAnimation<double>> animation = in AnimateTo() 78 AceType::MakeRefPtr<CurveAnimation<double>>(0.0, 1.0, animationOption_.GetCurve()); in AnimateTo()
|
H A D | animatable_color.h | 102 RefPtr<CurveAnimation<Color>> colorAnimation = in AnimateTo() 103 …AceType::MakeRefPtr<CurveAnimation<Color>>(Color(GetValue()), Color(endValue), animationOption_.Ge… in AnimateTo()
|
H A D | animatable_double.h | 128 RefPtr<CurveAnimation<double>> animation = in AnimateTo() 129 … AceType::MakeRefPtr<CurveAnimation<double>>(value_, endValue, animationOption_.GetCurve()); in AnimateTo()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | render_picker_column.h | 130 RefPtr<CurveAnimation<double>> CreateAnimation(double from, double to); 172 RefPtr<CurveAnimation<double>> toBottomCurve_; 173 RefPtr<CurveAnimation<double>> toTopCurve_; 174 RefPtr<CurveAnimation<double>> fromBottomCurve_; 175 RefPtr<CurveAnimation<double>> fromTopCurve_;
|
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/animation/ |
H A D | mock_animation.h | 67 RefPtr<CurveAnimation<int32_t>> animationInt_; 68 RefPtr<CurveAnimation<Color>> animationColor_; 69 RefPtr<CurveAnimation<float>> animationFloat_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | curve_animation.h | 27 class ACE_FORCE_EXPORT CurveAnimation : public Animation<T> { 29 CurveAnimation(const T& begin, const T& end, const RefPtr<Curve>& curve) in CurveAnimation() function 41 ~CurveAnimation() override = default;
|
H A D | shared_transition_effect.cpp | 245 auto translateAnimation = AceType::MakeRefPtr<CurveAnimation<DimensionOffset>>( in CreateTranslateAnimation() 253 … auto rotateAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(0.0f, 1.0f, option.GetCurve()); in CreateTranslateAnimation() 282 … AceType::MakeRefPtr<CurveAnimation<float>>(srcSize.Width(), destSize.Width(), Curves::FRICTION); in CreateSizeAnimation() 292 … AceType::MakeRefPtr<CurveAnimation<float>>(srcSize.Height(), destSize.Height(), Curves::FRICTION); in CreateSizeAnimation() 312 …auto opacityAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(srcOpacity, destOpacity, Curves… in CreateOpacityAnimation() 391 … auto animation = AceType::MakeRefPtr<CurveAnimation<float>>(1.0f, 0.0f, option.GetCurve()); in CreateAnimation()
|
H A D | card_transition_controller.cpp | 144 …auto offsetAnimation = AceType::MakeRefPtr<CurveAnimation<Offset>>(startOffset, endOffset, Curves:… in CreateCardTranslateAnimation() 179 …auto scaleAnimation = AceType::MakeRefPtr<CurveAnimation<double>>(startScale, endScale, Curves::FR… in CreateCardScaleAnimation() 227 … auto heightAnimation = AceType::MakeRefPtr<CurveAnimation<double>>(start, end, Curves::FRICTION); in CreateCardListAnimation() 271 …auto positionAnimation = AceType::MakeRefPtr<CurveAnimation<double>>(start, end, Curves::FRICTION); in CreateExternalAnimation()
|
H A D | animatable_base.h | 115 RefPtr<CurveAnimation<T>> animation = in CreateAnimation() 116 AceType::MakeRefPtr<CurveAnimation<T>>(begin, end, animationOption_.GetCurve()); in CreateAnimation()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/data_panel/ |
H A D | render_data_panel.h | 156 RefPtr<CurveAnimation<double>> animation_; 157 RefPtr<CurveAnimation<double>> transitionAnimation_; 225 RefPtr<CurveAnimation<double>> animation_;
|
H A D | render_data_panel.cpp | 149 animation_ = AceType::MakeRefPtr<CurveAnimation<double>>(0.0, 2.0, Curves::LINEAR); in Update() 168 animation_ = AceType::MakeRefPtr<CurveAnimation<double>>(0.0, 1.5, Curves::LINEAR); in Update() 182 … AceType::MakeRefPtr<CurveAnimation<double>>(progress_, previousPercentValue_, Curves::EASE_OUT); in Update()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/ |
H A D | tab_bar_size_animation.h | 56 RefPtr<CurveAnimation<ItemAnimationProp>> onFocusTranslate_; 57 RefPtr<CurveAnimation<ItemAnimationProp>> onBlurTranslate_;
|
H A D | tab_bar_size_animation.cpp | 45 … AceType::MakeRefPtr<CurveAnimation<ItemAnimationProp>>(onBlurItem, onFocusItem, Curves::FRICTION); in Initialize() 47 … AceType::MakeRefPtr<CurveAnimation<ItemAnimationProp>>(onFocusItem, onBlurItem, Curves::FRICTION); in Initialize()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/page_transition/ |
H A D | page_transition_info.h | 148 …auto animation = AceType::MakeRefPtr<CurveAnimation<TransformOperation>>(init, target, tweenOption… in AddTranslateAnimation() 165 …auto animation = AceType::MakeRefPtr<CurveAnimation<TransformOperation>>(init, target, tweenOption… in AddScaleAnimation() 177 …auto animation = AceType::MakeRefPtr<CurveAnimation<float>>(initValue, targetValue, tweenOption_.G… in AddOpacityAnimation()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/panel/ |
H A D | drag_bar_pattern.cpp | 103 auto touchAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(1.0, SCALE, Curves::SHARP); in InitProps() 206 … AceType::MakeRefPtr<CurveAnimation<OffsetT<Dimension>>>(barLeftPoint, leftPoint, Curves::SHARP); in DoStyleAnimation() 215 …AceType::MakeRefPtr<CurveAnimation<OffsetT<Dimension>>>(barCenterPoint, centerPoint, Curves::SHARP… in DoStyleAnimation() 223 … AceType::MakeRefPtr<CurveAnimation<OffsetT<Dimension>>>(barRightPoint, rightPoint, Curves::SHARP); in DoStyleAnimation() 337 …auto dragAnimation = AceType::MakeRefPtr<CurveAnimation<OffsetF>>(dragOffset, OffsetF(), Curves::S… in HandleTouchUp()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/shared_overlay/ |
H A D | shared_transition_effect.cpp | 66 …auto opacityAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(startOpacity, endOpacity, optio… in CreateOpacityAnimation() 137 …auto translateAnimation = AceType::MakeRefPtr<CurveAnimation<DimensionOffset>>(Offset(0, 0), diff,… in CreateTranslateAnimation() 146 … auto rotateAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(0.0f, 0.0f, option_->curve); in CreateTranslateAnimation() 199 …auto sizeAnimation = AceType::MakeRefPtr<CurveAnimation<SizeF>>(srcSize, destSize, option_->curve); in CreateSizeAnimation()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/drag_bar/ |
H A D | render_drag_bar.cpp | 67 … auto touchAnimation = AceType::MakeRefPtr<CurveAnimation<double>>(1.0, SCALE_ICON, Curves::SHARP); in Update() 180 …auto leftAnimation = AceType::MakeRefPtr<CurveAnimation<Offset>>(barLeftPoint_, left, Curves::SHAR… in DoStyleAnimation() 188 …auto centerAnimation = AceType::MakeRefPtr<CurveAnimation<Offset>>(barCenterPoint_, center, Curves… in DoStyleAnimation() 195 …auto rightAnimation = AceType::MakeRefPtr<CurveAnimation<Offset>>(barRightPoint_, right, Curves::S… in DoStyleAnimation() 304 …auto dragAnimation = AceType::MakeRefPtr<CurveAnimation<Offset>>(dragOffset_, Offset(), Curves::SH… in HandleTouchUp()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/test/unittest/framework/ |
H A D | animation_framework_test.cpp | 395 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 6, Curves::LINEAR); 472 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 6, Curves::LINEAR); 525 AceType::MakeRefPtr<CurveAnimation<Color>>(Color::BLACK, Color::WHITE, Curves::LINEAR); 839 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 2, Curves::LINEAR); 870 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 2, Curves::LINEAR); 1067 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 4, Curves::LINEAR); 1129 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 4, Curves::LINEAR); 1167 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 4, Curves::LINEAR); 1217 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 4, Curves::LINEAR); 1259 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 4, Curves::LINEAR); [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/ |
H A D | animatable_float.h | 113 RefPtr<CurveAnimation<float>> animation = AceType::MakeRefPtr<CurveAnimation<float>>( in AnimateTo()
|
H A D | animatable_dimension.cpp | 81 RefPtr<CurveAnimation<double>> animation = in AnimateTo() 82 AceType::MakeRefPtr<CurveAnimation<double>>(Value(), endValue, animationOption_.GetCurve()); in AnimateTo()
|
H A D | animatable_matrix4.cpp | 84 …RefPtr<CurveAnimation<TransformOperation>> animation = AceType::MakeRefPtr<CurveAnimation<Transfor… in AnimateTo()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/progress/ |
H A D | render_bubble_progress.cpp | 36 RefPtr<CurveAnimation<double>> animation = in OnPostFlush() 37 AceType::MakeRefPtr<CurveAnimation<double>>(0, totalTime, Curves::LINEAR); in OnPostFlush()
|
H A D | render_loading_progress.cpp | 106 auto cometMoveStart = AceType::MakeRefPtr<CurveAnimation<float>>(MOVE_START, MOVE_END, in UpdateCometAnimation() 137 …auto cometMoveTail = AceType::MakeRefPtr<CurveAnimation<float>>(0.0, cometTailLen_, Curves::LINEAR… in DoCometTailAnimation() 148 …auto cometMoveDegree = AceType::MakeRefPtr<CurveAnimation<float>>(MOVE_END, TAIL_END, Curves::LINE… in DoCometTailAnimation() 190 …auto cometLoopDegree = AceType::MakeRefPtr<CurveAnimation<float>>(TAIL_END, LOOP_END, Curves::LINE… in DoCometLoopAnimation()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/popup/ |
H A D | popup_element.cpp | 68 …auto showAlphaAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(0.0f, 1.0f, Curves::FAST_OUT_… in ShowPopupInSubWindow() 120 …auto showAlphaAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(0.0f, 1.0f, Curves::FAST_OUT_… in ShowPopup()
|