Home
last modified time | relevance | path

Searched refs:springProperty_ (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dsimple_spring_node.cpp29 springProperty_ = AceType::MakeRefPtr<SpringProperty>(); in SimpleSpringNode()
30 spring_ = AceType::MakeRefPtr<SpringMotion>(0.0, 0.0, 0.0, springProperty_); in SimpleSpringNode()
96 spring_->Reset(value_, endValue, velocity_, springProperty_); in EndToValue()
101 spring_->Reset(value_, endValue, velocity_, springProperty_); in EndToValue()
159 if (springProperty_) { in TransferParams()
160 springProperty_->SetStiffness(stiffness); in TransferParams()
161 springProperty_->SetDamping(damping); in TransferParams()
H A Dchain_animation.cpp30 : springProperty_(std::move(springProperty)), index_(index), space_(space), maxSpace_(maxSpace), in ChainAnimationNode()
33 spring_ = AceType::MakeRefPtr<SpringMotion>(space, space, 0.0, springProperty_); in ChainAnimationNode()
52 spring_->Reset(curPosition_, space_, curVelocity_, springProperty_); in SetDelta()
70 : springProperty_(springProperty), space_(space), maxSpace_(maxSpace), minSpace_(minSpace) in ChainAnimation()
195 … i, AceType::MakeRefPtr<ChainAnimationNode>(i, space_, maxSpace_, minSpace_, springProperty_)); in SetControlIndex()
203 … -i, AceType::MakeRefPtr<ChainAnimationNode>(-i, space_, maxSpace_, minSpace_, springProperty_)); in SetControlIndex()
H A Dsimple_spring_node.h63 return springProperty_; in GetTransferParams()
72 RefPtr<SpringProperty> springProperty_; variable
H A Dchain_animation.h57 RefPtr<SpringProperty> springProperty_; variable
119 RefPtr<SpringProperty> springProperty_; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/transform/
H A Dclick_spring_effect.cpp27 RefPtr<SpringProperty> springProperty_; member
64 … GetScale(), effectProperty.scale_, effectProperty.velocity_, effectProperty.springProperty_); in ShowAnimation()
69 GetScale(), 1.0, effectProperty.velocity_, effectProperty.springProperty_); in ShowAnimation()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H A Drender_scroll.h304 RefPtr<SpringProperty> springProperty_; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_pattern.cpp2033 springProperty_ = in SetChainAnimation()
2041 springProperty_->SetStiffness(chainAnimationOptions_.value().stiffness); in SetChainAnimation()
2042 springProperty_->SetDamping(chainAnimationOptions_.value().damping); in SetChainAnimation()
2043 … chainAnimation_ = AceType::MakeRefPtr<ChainAnimation>(space, maxSpace, minSpace, springProperty_); in SetChainAnimation()
2059 … chainAnimation_ = AceType::MakeRefPtr<ChainAnimation>(space, maxSpace, minSpace, springProperty_); in SetChainAnimation()
2094 if (springProperty_) { in SetChainAnimationOptions()
2095 springProperty_->SetStiffness(chainAnimationOptions_.value().stiffness); in SetChainAnimationOptions()
2096 springProperty_->SetDamping(chainAnimationOptions_.value().damping); in SetChainAnimationOptions()
H A Dlist_pattern.h462 RefPtr<SpringProperty> springProperty_; variable
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/
H A Dlist_layout_test_ng.cpp894 EXPECT_NE(pattern_->springProperty_, nullptr);