Home
last modified time | relevance | path

Searched refs:renderChild (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Dgrid_layout_element.cpp56 void GridLayoutElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
58 if (!renderChild) { in ApplyRenderChild()
70 ComponentGroupElement::ApplyRenderChild(renderChild); in ApplyRenderChild()
80 proxy->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dgrid_layout_element.h32 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Drender_element.cpp175 …eChild->ApplyComposed([weak = AceType::WeakClaim(this)](const RefPtr<RenderElement>& renderChild) { in Apply() argument
178 renderElement->ApplyRenderChild(renderChild); in Apply()
185 void RenderElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
187 if (!renderChild) { in ApplyRenderChild()
197 renderNode_->AddChild(renderChild->GetRenderNode(), renderChild->GetRenderSlot()); in ApplyRenderChild()
H A Drender_element.h70 virtual void ApplyRenderChild(const RefPtr<RenderElement>& renderChild);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/swiper/
H A Dswiper_element.cpp92 void SwiperElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
94 if (!renderChild) { in ApplyRenderChild()
103 renderNode_->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dswiper_element.h38 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/
H A Dwater_flow_element.cpp108 void WaterFlowElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
110 if (!renderChild) { in ApplyRenderChild()
119 renderNode_->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dwater_flow_element.h44 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid/
H A Dgrid_element.cpp169 void GridElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
171 if (!renderChild) { in ApplyRenderChild()
182 proxy->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dgrid_element.h35 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/grid/
H A Dgrid_element.cpp162 void GridElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
164 if (!renderChild) { in ApplyRenderChild()
173 renderNode_->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dgrid_element.h43 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Dlist_item_group_element.cpp91 void ListItemGroupElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
93 if (!renderChild) { in ApplyRenderChild()
104 auto listItemElement = ListItemElement::GetListItem(renderChild); in ApplyRenderChild()
112 proxy->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dlist_item_group_element.h29 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
H A Dlist_element.cpp880 void ListElement::ApplyRenderChild(const RefPtr<RenderElement>& renderChild) in ApplyRenderChild() argument
882 if (!renderChild) { in ApplyRenderChild()
893 auto listItemElement = ListItemElement::GetListItem(renderChild); in ApplyRenderChild()
901 proxy->AddChild(renderChild->GetRenderNode()); in ApplyRenderChild()
H A Dlist_element.h52 void ApplyRenderChild(const RefPtr<RenderElement>& renderChild) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/
H A Dtab_content_element.cpp164 auto renderChild = newChild->GetRenderNode(); in PerformBuild() local
165 if (renderChild) { in PerformBuild()
166 tabContent->AddChildContent(target, renderChild); in PerformBuild()