Home
last modified time | relevance | path

Searched refs:totalChildCount (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/panel/
H A Dsliding_panel_layout_algorithm.cpp168 auto totalChildCount = layoutWrapper->GetTotalChildCount(); in GetNodeLayoutWrapperByTag() local
169 if (totalChildCount == 0) { in GetNodeLayoutWrapperByTag()
173 for (int32_t i = 0; i < totalChildCount; i++) { in GetNodeLayoutWrapperByTag()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dgrid_modifier.cpp412 auto totalChildCount = frameNode->TotalChildCount(); in SetNodeAdapter() local
413 if (totalChildCount > 0) { in SetNodeAdapter()
H A Dwater_flow_modifier.cpp308 …auto totalChildCount = hasFooter ? frameNode->TotalChildCount() - 1 : frameNode->TotalChildCount(); in SetNodeAdapter() local
309 if (totalChildCount > 0) { in SetNodeAdapter()
H A Dnode_list_modifier.cpp506 auto totalChildCount = frameNode->TotalChildCount(); in SetNodeAdapter() local
507 if (totalChildCount > 0) { in SetNodeAdapter()
H A Dnode_swiper_modifier.cpp922 auto totalChildCount = SwiperModelNG::RealTotalCount(frameNode); in SetNodeAdapter() local
923 if (totalChildCount > 0) { in SetNodeAdapter()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H A Dswiper_layout_algorithm.cpp1147 int32_t totalChildCount = layoutWrapper->GetTotalChildCount(); in GetNodeLayoutWrapperByTag() local
1148 if (totalChildCount == 0) { in GetNodeLayoutWrapperByTag()
1151 int32_t lastChildIndex = totalChildCount - 1; in GetNodeLayoutWrapperByTag()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/indexer/
H A Dindexer_layout_test_ng.cpp45 int32_t totalChildCount = frameNode_->GetTotalChildCount(); in GetArrayValueTexts() local
46 for (int32_t index = 0; index < totalChildCount; index++) { in GetArrayValueTexts()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_pattern.cpp1938 int32_t totalChildCount = host->TotalChildCount(); in ScrollToIndex() local
1939 if (((index >= 0) && (index < totalChildCount)) || (index == LAST_ITEM)) { in ScrollToIndex()