/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | native_curve_helper.cpp | 30 } else if (auto springCurve = AceType::DynamicCast<SpringCurve>(curve)) { in ToNativeCurve() 31 return Rosen::RSAnimationTimingCurve::CreateSpringCurve(springCurve->velocity_, springCurve->mass_, in ToNativeCurve() 32 springCurve->stiffness_, springCurve->damping_); in ToNativeCurve()
|
/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | node_animate_test.cpp | 113 auto springCurve = OH_ArkUI_Curve_CreateSpringCurve(0.0f, 0.0f, 0.0f, 0.0f); in HWTEST_F() local 121 ASSERT_NE(springCurve, nullptr); in HWTEST_F() 150 OH_ArkUI_Curve_DisposeCurve(springCurve); in HWTEST_F() 266 auto springCurve = OH_ArkUI_Curve_CreateSpringCurve(0.0f, 0.0f, 0.0f, 0.0f); in HWTEST_F() local 271 EXPECT_EQ(OH_ArkUI_AnimatorOption_SetCurve(animatorOption, springCurve), ARKUI_ERROR_CODE_PARAM_INVALID); in HWTEST_F() 279 EXPECT_EQ(OH_ArkUI_AnimatorOption_SetKeyframeCurve(animatorKeyFrameOption, springCurve, 0), in HWTEST_F() 297 OH_ArkUI_Curve_DisposeCurve(springCurve); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/ |
H A D | toss_animation_controller.cpp | 93 auto springCurve = UpdatePlayAnimationValue(); in StartSpringMotion() local 94 CHECK_NULL_VOID(springCurve); in StartSpringMotion() 102 option.SetCurve(springCurve); in StartSpringMotion()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/ |
H A D | toss_animation_controller.cpp | 94 auto springCurve = UpdatePlayAnimationValue(); in StartSpringMotion() local 95 CHECK_NULL_VOID(springCurve); in StartSpringMotion() 103 option.SetCurve(springCurve); in StartSpringMotion()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/ |
H A D | toss_animation_controller.cpp | 95 auto springCurve = UpdatePlayAnimationValue(); in StartSpringMotion() local 96 CHECK_NULL_VOID(springCurve); in StartSpringMotion() 104 option.SetCurve(springCurve); in StartSpringMotion()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/ |
H A D | radio_pattern.cpp | 521 auto springCurve = AceType::MakeRefPtr<InterpolatingSpring>(DEFAULT_INTERPOLATINGSPRING_VELOCITY, in startEnterAnimation() local 524 delayOption.SetCurve(springCurve); in startEnterAnimation() 549 auto springCurve = AceType::MakeRefPtr<InterpolatingSpring>(DEFAULT_INTERPOLATINGSPRING_VELOCITY, in startExitAnimation() local 552 delayOption.SetCurve(springCurve); in startExitAnimation()
|
H A D | radio_paint_method.cpp | 171 auto springCurve = AceType::MakeRefPtr<InterpolatingSpring>(DEFAULT_INTERPOLATINGSPRING_VELOCITY, in UpdateIndicatorAnimation() local 177 delayOption.SetCurve(springCurve); in UpdateIndicatorAnimation()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/utils/ |
H A D | drag_animation_helper.cpp | 175 auto springCurve = AceType::MakeRefPtr<InterpolatingSpring>(DEFAULT_INTERPOLATING_SPRING_VELOCITY, in PlayNodeAnimationBeforeLifting() local 178 option.SetCurve(springCurve); in PlayNodeAnimationBeforeLifting()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/ |
H A D | navigation_group_node.cpp | 42 const RefPtr<InterpolatingSpring> springCurve = AceType::MakeRefPtr<InterpolatingSpring>(0.0f, 1.0f, 342.0f, 37.0f); member 497 AnimationOption option = CreateAnimationOption(springCurve, FillMode::FORWARDS, DEFAULT_ANIMATION_DURATION, in CreateAnimationWithPop() 605 AnimationOption option = CreateAnimationOption(springCurve, FillMode::FORWARDS, DEFAULT_ANIMATION_DURATION, in CreateAnimationWithPush() 1148 AnimationOption option = CreateAnimationOption(springCurve, FillMode::FORWARDS, DEFAULT_ANIMATION_DURATION, 1232 AnimationOption option = CreateAnimationOption(springCurve, FillMode::FORWARDS, DEFAULT_ANIMATION_DURATION,
|
H A D | title_bar_pattern.cpp | 811 auto springCurve = AceType::MakeRefPtr<InterpolatingSpring>(velocity, mass, stiffness, damping); in SpringAnimation() local 813 option.SetCurve(springCurve); in SpringAnimation()
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | animate_impl.cpp | 313 auto curve = impl->getAnimation()->springCurve(velocity, mass, stiffness, damping); in SpringCurve()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/fuzztest/rsanimation_fuzzer/ |
H A D | rsanimation_fuzzer.cpp | 132 auto springCurve = RSAnimationTimingCurve::CreateSpringCurve(velocity, mass, stiffness, damping); in RsAnimationTimingCurveFuzzTest() local
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | rosen_render_context.cpp | 4952 const RefPtr<InterpolatingSpring> springCurve = local 4955 springCurve->UpdateMinimumAmplitudeRatio(defaultAmplitudePx); 4956 option.SetCurve(springCurve); 5924 auto springCurve = UpdatePlayAnimationValue(level, scaleValue); local 5927 option.SetCurve(springCurve); 5937 AnimationUtils::OpenImplicitAnimation(option, springCurve, nullptr); 5946 AnimationUtils::OpenImplicitAnimation(option, springCurve, nullptr);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/ |
H A D | swiper_pattern.cpp | 3441 auto springCurve = DynamicCast<SpringCurve>(curve); 3443 if (springCurve->GetCurrentVelocity() < 0) { 3445 motionVelocity_, springCurve->GetMass(), springCurve->GetStiffness(), springCurve->GetDamping()); 3821 auto springCurve = MakeRefPtr<SpringCurve>(0.0f, 1.0f, 228.0f, 30.0f); 3823 option.SetCurve(springCurve);
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/ |
H A D | cjui_api.h | 3066 ArkUICurveHandle (*springCurve)(
member
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 4879 ArkUICurveHandle (*springCurve)( member
|