Home
last modified time | relevance | path

Searched defs:curve (Results 1 – 25 of 155) sorted by relevance

1234567

/ohos5.0/foundation/arkui/ace_engine/test/unittest/interfaces/
H A Danimate_impl_test.cpp64 ArkUI_CurveHandle curve = CubicBezierCurve(0.0f, 0.0f, 0.0f, 0.0f); variable
75 ArkUI_CurveHandle curve = SpringCurve(0.0f, 0.0f, 0.0f, 0.0f); variable
86 ArkUI_CurveHandle curve = SpringMotion(0.0f, 0.0f, 0.0f); variable
108 ArkUI_CurveHandle curve = ResponsiveSpringMotion(0.0f, 0.0f, 0.0f); variable
146 ArkUI_CurveHandle curve = StepsCurve(0, true); variable
158 ArkUI_CurveHandle curve = StepsCurve(1, true); variable
188 ArkUI_CurveHandle curve = SpringCurve(0.0f, 0.0f, 0.0f, 0.0f); variable
203 ArkUI_CurveHandle curve = SpringCurve(0.5f, 0.5f, 0.5f, 0.5f); variable
218 ArkUI_CurveHandle curve = SpringMotion(0.5f, 0.5f, 0.5f); variable
233 ArkUI_CurveHandle curve = SpringMotion(-1.0f, -1.0f, -1.0f); variable
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/
H A Drs_interactive_implict_animator_test.cpp48 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
81 RSAnimationTimingCurve curve = RSAnimationTimingCurve::SPRING; variable
110 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
136 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
166 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
197 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
227 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
256 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
285 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
316 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
[all …]
H A Drs_animation_test.cpp54 RSAnimationTimingCurve curve = RSAnimationTimingCurve::SPRING; variable
96 RSAnimationTimingCurve curve = RSAnimationTimingCurve::LINEAR; variable
175 RSAnimationTimingCurve curve = RSAnimationTimingCurve::SPRING; variable
221 RSAnimationTimingCurve curve = RSAnimationTimingCurve::LINEAR; variable
309 RSAnimationTimingCurve curve = RSAnimationTimingCurve::SPRING; variable
351 RSAnimationTimingCurve curve = RSAnimationTimingCurve::LINEAR; variable
432 RSAnimationTimingCurve curve = RSAnimationTimingCurve::SPRING; variable
481 RSAnimationTimingCurve curve = RSAnimationTimingCurve::LINEAR; variable
/ohos5.0/base/msdp/device_status/utils/common/src/
H A Danimation_curve.cpp67 …urveType AnimationCurve::CreateCurve(const std::string &curveName, const std::vector<float> &curve) in CreateCurve()
79 RosenCurveType AnimationCurve::CreateCubicCurve(const std::vector<float> &curve) in CreateCubicCurve()
88 RosenCurveType AnimationCurve::CreateSpringCurve(const std::vector<float> &curve) in CreateSpringCurve()
97 RosenCurveType AnimationCurve::CreateInterpolatingSpring(const std::vector<float> &curve) in CreateInterpolatingSpring()
106 RosenCurveType AnimationCurve::CreateResponseSpring(const std::vector<float> &curve) in CreateResponseSpring()
115 RosenCurveType AnimationCurve::CreateStepsCurve(const std::vector<float> &curve) in CreateStepsCurve()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dcurve.h54 virtual bool IsEqual(const RefPtr<Curve>& curve) const in IsEqual()
66 explicit ReverseCurve(const RefPtr<Curve>& curve) : curve_(curve) {} in ReverseCurve()
88 explicit ComplementaryCurve(const RefPtr<Curve>& curve) : curve_(curve) {} in ComplementaryCurve()
115 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
140 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
160 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
183 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
235 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
305 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
362 bool IsEqual(const RefPtr<Curve>& curve) const override in IsEqual()
H A Dcurve_animation.h29 CurveAnimation(const T& begin, const T& end, const RefPtr<Curve>& curve) in CurveAnimation()
48 void SetCurve(const RefPtr<Curve>& curve) override in SetCurve()
100 void Calculate(float time, const RefPtr<Curve>& curve) in Calculate()
H A Dnative_curve_helper.cpp23 Rosen::RSAnimationTimingCurve NativeCurveHelper::ToNativeCurve(const RefPtr<Curve>& curve) in ToNativeCurve()
48 auto curve = weak.Upgrade(); in ToNativeCurve() local
H A Dkeyframe_animation.h91 void SetCurve(const RefPtr<Curve>& curve) override in SetCurve()
119 …auto curve = keyframe->GetCurve() ? keyframe->GetCurve() : AceType::DynamicCast<Curve>(Curves::EAS… in RunAsync() local
165 auto& curve = keyframe->GetCurve(); in Calculate() local
H A Dscheduler.cpp98 bool Scheduler::Animate(const AnimationOption& option, const RefPtr<Curve>& curve, in Animate()
110 void Scheduler::OpenImplicitAnimation(const AnimationOption& option, const RefPtr<Curve>& curve, in OpenImplicitAnimation()
134 float fraction, const RefPtr<Curve>& curve, const std::function<void()>& propertyCallback) in AddKeyFrame()
H A Danimation.h53 virtual void SetCurve(const RefPtr<Curve>& curve) {} in SetCurve()
H A Dkeyframe.h56 void SetCurve(const RefPtr<Curve>& curve) in SetCurve()
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/animation/
H A Dmock_scheduler.cpp31 bool Scheduler::Animate(const AnimationOption& option, const RefPtr<Curve>& curve, in Animate()
38 …const AnimationOption& option, const RefPtr<Curve>& curve, const std::function<void()>& finishCall… in OpenImplicitAnimation()
48 void Scheduler::AddKeyFrame(float fraction, const RefPtr<Curve>& curve, const std::function<void()>… in AddKeyFrame()
/ohos5.0/foundation/arkui/ace_engine/interfaces/native/node/
H A Danimate_impl.cpp85 auto curve = option->keyframes[i].curve; in KeyframeAnimateTo() local
270 auto curve = impl->getAnimation()->initCurve(animationCurve); in InitCurve() local
281 auto curve = impl->getAnimation()->stepsCurve(count, end); in StepsCurve() local
294 auto curve = impl->getAnimation()->cubicBezierCurve(x1, y1, x2, y2); in CubicBezierCurve() local
314 auto curve = impl->getAnimation()->springCurve(velocity, mass, stiffness, damping); in SpringCurve() local
337 auto curve = impl->getAnimation()->springMotion(response, dampingFraction, overlapDuration); in SpringMotion() local
360 …auto curve = impl->getAnimation()->responsiveSpringMotion(response, dampingFraction, overlapDurati… in ResponsiveSpringMotion() local
380 auto curve = impl->getAnimation()->interpolatingSpring(velocity, mass, stiffness, damping); in InterpolatingSpring() local
391 auto curve = impl->getAnimation()->customCurve(interpolate, userData); in CustomCurve() local
H A Danimate_impl.h33 ArkUI_AnimationCurve curve; member
54 ArkUICurveHandle curve; member
60 ArkUI_CurveHandle curve; member
76 ArkUI_CurveHandle curve; member
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_animate.cpp208 auto curve = reinterpret_cast<Curve*>(option.iCurve); in AnimateTo() local
273 auto curve = reinterpret_cast<Curve*>(keyframe.curve); in StartKeyframeAnimation() local
335 auto curve = reinterpret_cast<Curve*>(keyframe.curve); in ParseAnimatorAnimation() local
345 auto curve = reinterpret_cast<Curve*>(option->easing); in ParseAnimatorAnimation() local
516 ArkUICurveHandle CreateCurve(ArkUI_Int32 curve) in CreateCurve()
525 auto curve = AceType::MakeRefPtr<StepsCurve>(count, static_cast<StepsCurvePosition>(end)); in CreateStepsCurve() local
532 auto curve = AceType::MakeRefPtr<CubicCurve>(x1, y1, x2, y2); in CreateCubicBezierCurve() local
540 auto curve = AceType::MakeRefPtr<SpringCurve>(velocity, mass, stiffness, damping); in CreateSpringCurve() local
564 auto curve = AceType::MakeRefPtr<InterpolatingSpring>(velocity, mass, stiffness, damping); in CreateInterpolatingSpring() local
577 auto curve = AceType::MakeRefPtr<CustomCurve>(func); in CreateCustomCurve() local
[all …]
/ohos5.0/foundation/arkui/ace_engine/test/unittest/bridge/common/utils/
H A Dutils_test.cpp46 std::string curve = ""; variable
96 std::string curve = ""; variable
387 RefPtr<Curve> curve; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Dfake_animation_utils.cpp21 …const AnimationOption& option, const RefPtr<Curve>& curve, const std::function<void()>& wrapFinish… in OpenImplicitAnimation()
37 float fraction, const RefPtr<Curve>& curve, const PropertyCallback& callback) in AddKeyFrame()
H A Drosen_animation_utils.cpp91 …const AnimationOption& option, const RefPtr<Curve>& curve, const std::function<void()>& finishCall… in OpenImplicitAnimation()
141 void AnimationUtils::AddKeyFrame(float fraction, const RefPtr<Curve>& curve, const PropertyCallback… in AddKeyFrame()
151 void AnimationUtils::AddDurationKeyFrame(int duration, const RefPtr<Curve>& curve, const PropertyCa… in AddDurationKeyFrame()
188 …RenderContext>& renderContext, const Color& endColor, int32_t duration, const RefPtr<Curve>& curve) in BlendBgColorAnimation()
236 Rosen::RSAnimationTimingCurve curve; in CreateInteractiveAnimation() local
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/test/unittest/animation/
H A Drs_animation_test.cpp222 …RSAnimationTimingCurve curve = RSAnimationTimingCurve::CreateCustomCurve([](float input) { return … in __anon6cd38f390102() variable
252 … RSAnimationTimingCurve curve = RSAnimationTimingCurve::CreateCubicCurve(0.42f, 0.0f, 0.58f, 1.0f); variable
526 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
554 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
584 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
617 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
644 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid/
H A Dgrid_controller.cpp32 void GridController::AnimateTo(double position, float duration, const RefPtr<Curve>& curve) in AnimateTo()
52 void GridController::AnimateTo(int32_t index, float duration, const RefPtr<Curve>& curve) in AnimateTo()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/modules/
H A Djsi_curves_module.cpp67 RefPtr<Curve> curve; in CurvesInitInternal() local
102 const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) in CreateSpringCurve()
137 const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) in CreateInterpolatingSpring()
160 const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) in CreateCubicCurve()
189 const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) in CreateStepsCurve()
215 const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) in CreateSpringMotionCurve()
246 const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) in CreateResponsiveSpringMotionCurve()
281 RefPtr<Curve> curve; in ParseCurves() local
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/render/
H A Dmock_animation_utils.cpp45 …const AnimationOption& option, const RefPtr<Curve>& curve, const std::function<void()>& wrapFinish… in OpenImplicitAnimation()
97 void AnimationUtils::AddKeyFrame(float fraction, const RefPtr<Curve>& curve, const PropertyCallback… in AddKeyFrame()
157 …RenderContext>& renderContext, const Color& endColor, int32_t duration, const RefPtr<Curve>& curve) in BlendBgColorAnimation()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_page_transition_ffi.cpp26 void FfiPageTransitionEnterCreate(int type, int duration, char* curve, int delay) in FfiPageTransitionEnterCreate()
32 void FfiPageTransitionExitCreate(int type, int duration, char* curve, int delay) in FfiPageTransitionExitCreate()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dshared_transition_option.h31 RefPtr<Curve> curve; member
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/animation/
H A Drs_implicit_animation_param_test.cpp74 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable
103 RSAnimationTimingCurve curve = RSAnimationTimingCurve::EASE_IN_OUT; variable

1234567