/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | properly-use-state-management-to-develope.md | 777 childList: ChildList; 779 this.childList = childList; 787 this.childList = [] 792 @Link childList: ChildList; 849 childList: this.childList, 867 CompList({ childList: this.ancestor.childList }) 939 childList: ChildList; 941 this.childList = childList; 952 this.childList = [] 1014 childList: this.childList, [all …]
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/layout/ |
H A D | box_layout_algorithm_test_ng.cpp | 492 std::list<RefPtr<LayoutWrapper>> childList; variable 549 std::list<RefPtr<LayoutWrapper>> childList; variable 611 std::list<RefPtr<LayoutWrapper>> childList; variable 612 childList.push_back(childLayoutWrapper); 614 EXPECT_NE(&childList, nullptr); 658 std::list<RefPtr<LayoutWrapper>> childList; variable 787 std::list<RefPtr<LayoutWrapper>> childList; variable 788 childList = layoutWrapper->GetAllChildrenWithBuild(); 789 childList.push_front(nullptr); 792 childList.push_front(layoutWrapper2); [all …]
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | properly-use-state-management-to-develope.md | 777 childList: ChildList; 779 this.childList = childList; 787 this.childList = [] 792 @Link childList: ChildList; 849 childList: this.childList, 867 CompList({ childList: this.ancestor.childList }) 939 childList: ChildList; 941 this.childList = childList; 952 this.childList = [] 1014 childList: this.childList, [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_clock/ |
H A D | text_clock_layout_algorithm.cpp | 33 auto childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local 34 for (const auto& child : childList) { in Measure()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/ |
H A D | flex_layout_algorithm.cpp | 339 auto& childList = loopIter->second; in MeasureAndCleanMagicNodes() local 341 for (auto& child : childList) { in MeasureAndCleanMagicNodes() 395 for (auto& child : childList) { in MeasureAndCleanMagicNodes() 434 auto& childList = iter->second; in MeasureAndCleanMagicNodes() local 435 for (auto& child : childList) { in MeasureAndCleanMagicNodes() 458 auto childList = iter->second; in MeasureAndCleanMagicNodes() local 460 for (auto& child : childList) { in MeasureAndCleanMagicNodes() 472 for (auto& child : childList) { in MeasureAndCleanMagicNodes() 488 for (auto& child : childList) { in MeasureAndCleanMagicNodes() 509 auto childList = iter->second; in MeasureAndCleanMagicNodes() local [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_item_layout_algorithm.cpp | 49 std::list<RefPtr<LayoutWrapper>> childList; in Measure() local 54 childList.push_back(child); in Measure() 56 PerformMeasureSelfWithChildList(layoutWrapper, childList); in Measure()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/scroll/ |
H A D | render_multi_child_scroll.h | 71 auto childList = GetChildren(); in OnAttachContext() local 72 for (const auto& child : childList) { in OnAttachContext()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/select_popup/ |
H A D | select_popup_component.cpp | 244 std::list<RefPtr<Component>> childList; in InitializeInnerBox() local 245 childList.emplace_back(titleBox); in InitializeInnerBox() 246 childList.emplace_back(scroll); in InitializeInnerBox() 249 … AceType::MakeRefPtr<ColumnComponent>(FlexAlign::FLEX_START, FlexAlign::FLEX_START, childList); in InitializeInnerBox()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/toggle/ |
H A D | switch_layout_algorithm.cpp | 89 auto childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local 91 for (const auto& child : childList) { in Measure()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_adapter_impl.cpp | 141 std::vector<UINode*> childList; in GetAllItem() local 142 GetAllItems(childList); in GetAllItem() 143 *size = childList.size(); in GetAllItem() 146 (*items)[i] = reinterpret_cast<ArkUINodeHandle>(childList[i]); in GetAllItem()
|
H A D | frame_node_modifier.cpp | 576 auto childList = frameNode->GetActiveChildren(); in GetActiveChildrenInfo() local 577 *size = childList.size(); in GetActiveChildrenInfo() 580 for (auto& child : childList) { in GetActiveChildrenInfo()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/ |
H A D | box_layout_algorithm.cpp | 83 LayoutWrapper* layoutWrapper, const std::list<RefPtr<LayoutWrapper>>& childList) in PerformMeasureSelfWithChildList() argument 119 for (const auto& child : childList) { in PerformMeasureSelfWithChildList()
|
H A D | box_layout_algorithm.h | 46 LayoutWrapper* layoutWrapper, const std::list<RefPtr<LayoutWrapper>>& childList);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkbox/ |
H A D | checkbox_layout_algorithm.cpp | 98 const auto& childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local 100 for (const auto& child : childList) { in Measure()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | lazy_for_each_node.cpp | 456 std::list<std::pair<std::string, RefPtr<UINode>>> childList; in LoadChildren() local 457 const auto& items = builder_->GetItems(childList); in LoadChildren() 460 for (auto& node : childList) { in LoadChildren()
|
H A D | lazy_for_each_builder.h | 152 …<int32_t, LazyForEachChild>& GetItems(std::list<std::pair<std::string, RefPtr<UINode>>>& childList) in GetItems() argument 202 childList.emplace_back(key, node.second); in GetItems()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/list/ |
H A D | render_list.cpp | 804 auto childList = GetChildren(); in PaintItems() local 805 childList.sort([wp = WeakClaim(this)](RefPtr<RenderNode>& node1, RefPtr<RenderNode>& node2) { in PaintItems() 812 PaintChildList(childList, context, offset); in PaintItems()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/ |
H A D | button_layout_algorithm.cpp | 38 const auto& childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local 40 for (const auto& child : childList) { in Measure()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gauge/ |
H A D | gauge_layout_algorithm.cpp | 46 auto childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local 48 for (const auto& child : childList) { in Measure()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/ |
H A D | js_card_parser.cpp | 1337 auto childList = rootJson->GetValue("children"); in UpdateDomNode() local 1338 if (childList && childList->IsValid()) { in UpdateDomNode() 1339 auto child = childList->GetChild(); in UpdateDomNode() 1716 auto childList = rootJson->GetValue("children"); in CreateDomNode() local 1717 if (childList && childList->IsValid()) { in CreateDomNode() 1718 auto child = childList->GetChild(); in CreateDomNode()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | render_node.h | 546 …void PaintChildList(const std::list<RefPtr<RenderNode>>& childList, RenderContext& context, const …
|
H A D | render_node.cpp | 437 const std::list<RefPtr<RenderNode>>& childList, RenderContext& context, const Offset& offset) in PaintChildList() argument 439 for (const auto& item : SortChildrenByZIndex(childList)) { in PaintChildList()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/swiper/ |
H A D | render_swiper.cpp | 3458 std::list<RefPtr<RenderNode>> childList; in GetPaintChildList() local 3464 childList.emplace_back(child); in GetPaintChildList() 3468 return childList; in GetPaintChildList()
|
/ohos5.0/docs/zh-cn/application-dev/ui/ |
H A D | arkts-user-defined-arktsNode-frameNode.md | 87 public childList: Array<FrameNode> = new Array<FrameNode>();
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/ |
H A D | js-apis-arkui-frameNode.md | 3171 public childList:Array<FrameNode> = new Array<FrameNode>(); 3183 this.childList.push(childNode);
|