Home
last modified time | relevance | path

Searched refs:controlIndex_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dchain_animation.cpp142 if (index > controlIndex_) { in GetValue()
143 for (int32_t i = 1; i <= index - controlIndex_ && i < CHAIN_NODE_NUMBER; i++) { in GetValue()
146 } else if (index < controlIndex_) { in GetValue()
147 for (int32_t i = 1; i <= controlIndex_ - index && i < CHAIN_NODE_NUMBER; i++) { in GetValue()
165 if (index > controlIndex_) { in GetValuePredict()
166 for (int32_t i = 1; i <= index - controlIndex_ && i < CHAIN_NODE_NUMBER; i++) { in GetValuePredict()
170 } else if (index < controlIndex_) { in GetValuePredict()
171 for (int32_t i = 1; i <= controlIndex_ - index && i < CHAIN_NODE_NUMBER; i++) { in GetValuePredict()
181 if (index == controlIndex_) { in SetControlIndex()
187 int32_t dt = index - controlIndex_; in SetControlIndex()
[all …]
H A Dchain_animation.h78 return controlIndex_; in GetControlIndex()
125 int32_t controlIndex_ = 0; variable