Home
last modified time | relevance | path

Searched refs:childNodeIndex_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_item_layout_algorithm.h29 … :startNodeIndex_(startNodeIndex), endNodeIndex_(endNodeIndex), childNodeIndex_(childNodeIndex) {} in ListItemLayoutAlgorithm()
103 int32_t childNodeIndex_; variable
H A Dlist_item_pattern.cpp145 if (childNodeIndex_ >= startNodeIndex_) { in SetStartNode()
146 childNodeIndex_++; in SetStartNode()
165 if (childNodeIndex_ > startNodeIndex_) { in SetStartNode()
166 childNodeIndex_--; in SetStartNode()
180 if (childNodeIndex_ >= endNodeIndex_) { in SetEndNode()
181 childNodeIndex_++; in SetEndNode()
200 if (childNodeIndex_ > endNodeIndex_) { in SetEndNode()
201 childNodeIndex_--; in SetEndNode()
209 if (endNodeIndex_ >= 0 && endNodeIndex_ < childNodeIndex_) { in OnDidPop()
212 auto childNode = host->GetChildAtIndex(childNodeIndex_); in OnDidPop()
[all …]
H A Dlist_item_layout_algorithm.cpp51 auto child = layoutWrapper->GetOrCreateChildByIndex(childNodeIndex_); in Measure()
128 auto child = layoutWrapper->GetOrCreateChildByIndex(childNodeIndex_); in Layout()
H A Dlist_item_pattern.h275 int32_t childNodeIndex_ = 0; variable