Searched refs:springProperty_ (Results 1 – 9 of 9) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | simple_spring_node.cpp | 29 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 D | chain_animation.cpp | 30 : 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 D | simple_spring_node.h | 63 return springProperty_; in GetTransferParams() 72 RefPtr<SpringProperty> springProperty_; variable
|
H A D | chain_animation.h | 57 RefPtr<SpringProperty> springProperty_; variable 119 RefPtr<SpringProperty> springProperty_; variable
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/transform/ |
H A D | click_spring_effect.cpp | 27 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 D | render_scroll.h | 304 RefPtr<SpringProperty> springProperty_; variable
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_pattern.cpp | 2033 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 D | list_pattern.h | 462 RefPtr<SpringProperty> springProperty_; variable
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_layout_test_ng.cpp | 894 EXPECT_NE(pattern_->springProperty_, nullptr);
|