/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | spring_curve.h | 24 class ACE_EXPORT SpringCurve : public Curve { 25 DECLARE_ACE_TYPE(SpringCurve, Curve); 28 SpringCurve(float velocity, float mass, float stiffness, float damping); 29 ~SpringCurve() override = default; 61 auto other = DynamicCast<SpringCurve>(curve); in IsEqual()
|
H A D | spring_curve.cpp | 34 SpringCurve::SpringCurve(float velocity, float mass, float stiffness, float damping) in SpringCurve() function in OHOS::Ace::SpringCurve 42 void SpringCurve::SetEndPosition(float endPosition, float startVelocity) in SetEndPosition() 61 void SpringCurve::InitEstimateDuration() in InitEstimateDuration() 94 float SpringCurve::MoveInternal(float time) in MoveInternal() 115 const std::string SpringCurve::ToString() in ToString()
|
H A D | native_curve_helper.cpp | 30 } else if (auto springCurve = AceType::DynamicCast<SpringCurve>(curve)) { in ToNativeCurve()
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | animate_impl_test.cpp | 75 ArkUI_CurveHandle curve = SpringCurve(0.0f, 0.0f, 0.0f, 0.0f); 188 ArkUI_CurveHandle curve = SpringCurve(0.0f, 0.0f, 0.0f, 0.0f); 203 ArkUI_CurveHandle curve = SpringCurve(0.5f, 0.5f, 0.5f, 0.5f);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/modules/ |
H A D | jsi_curves_module.cpp | 132 curve = AceType::MakeRefPtr<SpringCurve>(velocity, mass, stiffness, damping); in CreateSpringCurve() 344 shared_ptr<JsValue> SpringCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& th… in SpringCurve() function 399 moduleObj->SetProperty(runtime, SPRING_CURVE, runtime->NewFunction(SpringCurve)); in InitCurvesModule()
|
/ohos5.0/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | animate_impl.h | 113 ArkUI_CurveHandle SpringCurve(float velocity, float mass, float stiffness, float damping);
|
H A D | animate_impl.cpp | 299 ArkUI_CurveHandle SpringCurve(float velocity, float mass, float stiffness, float damping) in SpringCurve() function
|
H A D | node_animate.cpp | 676 return OHOS::Ace::AnimateModel::SpringCurve(velocity, mass, stiffness, damping); in OH_ArkUI_Curve_CreateSpringCurve()
|
/ohos5.0/docs/zh-cn/application-dev/ui/ |
H A D | arkts-spring-curve.md | 108 export struct SpringCurve {
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/ |
H A D | grid_event_hub.cpp | 353 auto curve = MakeRefPtr<SpringCurve>( in MoveItems()
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/swiper/ |
H A D | swiper_animation_test_ng.cpp | 382 auto curve1 = AceType::MakeRefPtr<SpringCurve>(velocity, mass, stiffness, damping); 424 auto curve1 = AceType::MakeRefPtr<SpringCurve>(velocity, mass, stiffness, damping);
|
/ohos5.0/docs/en/application-dev/ui/ |
H A D | arkts-spring-curve.md | 108 export struct SpringCurve {
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/refresh/ |
H A D | refresh_pattern.cpp | 1011 option.SetCurve(AceType::MakeRefPtr<SpringCurve>(0.0f, 1.0f, 228.0f, 30.0f)); in LoadingProgressRefreshingAnimation() 1063 option.SetCurve(AceType::MakeRefPtr<SpringCurve>(0.0f, 1.0f, 228.0f, 30.0f)); in CustomBuilderRefreshingAnimation()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_animate.cpp | 540 auto curve = AceType::MakeRefPtr<SpringCurve>(velocity, mass, stiffness, damping); in CreateSpringCurve()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/utils/ |
H A D | utils.cpp | 93 return AceType::MakeRefPtr<SpringCurve>(velocity, mass, stiffness, damping); in SpringCurveCreator()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/data_panel/ |
H A D | data_panel_modifier.cpp | 119 RefPtr<Curve> curve = AceType::MakeRefPtr<SpringCurve>( in UpdateDate()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/ |
H A D | swiper_pattern.cpp | 3311 if (InstanceOf<SpringCurve>(curve)) { in GetCurveIncludeMotion() 3312 auto springCurve = DynamicCast<SpringCurve>(curve); in GetCurveIncludeMotion() 3315 return AceType::MakeRefPtr<SpringCurve>( in GetCurveIncludeMotion() 3647 auto springCurve = MakeRefPtr<SpringCurve>(0.0f, 1.0f, 228.0f, 30.0f); in PlaySpringAnimation()
|