Home
last modified time | relevance | path

Searched refs:childList (Results 1 - 24 of 24) sorted by relevance

/foundation/arkui/ace_engine/test/unittest/core/layout/
H A Dbox_layout_algorithm_test_ng.cpp492 std::list<RefPtr<LayoutWrapper>> childList; in HWTEST_F() local
493 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); in HWTEST_F() local
503 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); in HWTEST_F() local
549 std::list<RefPtr<LayoutWrapper>> childList; in HWTEST_F() local
554 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); in HWTEST_F() local
611 std::list<RefPtr<LayoutWrapper>> childList; in HWTEST_F() local
612 childList.push_back(childLayoutWrapper); in HWTEST_F()
613 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); in HWTEST_F() local
614 EXPECT_NE(&childList, nullptr); in HWTEST_F()
658 std::list<RefPtr<LayoutWrapper>> childList; in HWTEST_F() local
661 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); HWTEST_F() local
787 std::list<RefPtr<LayoutWrapper>> childList; HWTEST_F() local
796 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); HWTEST_F() local
808 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); HWTEST_F() local
818 boxLayoutAlgorithm.PerformMeasureSelfWithChildList(AccessibilityManager::RawPtr(layoutWrapper), childList); HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_clock/
H A Dtext_clock_layout_algorithm.cpp32 auto childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local
33 for (const auto& child : childList) { in Measure()
/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H A Drender_multi_child_scroll.h71 auto childList = GetChildren(); variable
72 for (const auto& child : childList) {
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_item_layout_algorithm.cpp43 std::list<RefPtr<LayoutWrapper>> childList; in Measure() local
48 childList.push_back(child); in Measure()
50 PerformMeasureSelfWithChildList(layoutWrapper, childList); in Measure()
/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/
H A Dbox_layout_algorithm.h46 LayoutWrapper* layoutWrapper, const std::list<RefPtr<LayoutWrapper>>& childList);
H A Dbox_layout_algorithm.cpp71 LayoutWrapper* layoutWrapper, const std::list<RefPtr<LayoutWrapper>>& childList) in PerformMeasureSelfWithChildList()
107 for (const auto& child : childList) { in PerformMeasureSelfWithChildList()
70 PerformMeasureSelfWithChildList( LayoutWrapper* layoutWrapper, const std::list<RefPtr<LayoutWrapper>>& childList) PerformMeasureSelfWithChildList() argument
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/
H A Dflex_layout_algorithm.cpp322 auto& childList = loopIter->second; in MeasureAndCleanMagicNodes() local
324 for (auto& child : childList) { in MeasureAndCleanMagicNodes()
358 for (const auto& child : childList) { in MeasureAndCleanMagicNodes()
376 auto& childList = secondIterLoop->second; in MeasureAndCleanMagicNodes() local
378 for (auto& child : childList) { in MeasureAndCleanMagicNodes()
417 auto& childList = iter->second; in MeasureAndCleanMagicNodes() local
418 for (auto& child : childList) { in MeasureAndCleanMagicNodes()
441 auto childList = iter->second; in MeasureAndCleanMagicNodes() local
443 for (auto& child : childList) { in MeasureAndCleanMagicNodes()
455 for (auto& child : childList) { in MeasureAndCleanMagicNodes()
492 auto childList = iter->second; MeasureAndCleanMagicNodes() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/toggle/
H A Dswitch_layout_algorithm.cpp83 auto childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local
85 for (const auto& child : childList) { in Measure()
/foundation/arkui/ace_engine/frameworks/core/components/select_popup/
H A Dselect_popup_component.cpp244 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()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_adapter_impl.cpp129 std::vector<UINode*> childList; in GetAllItem() local
130 GetAllItems(childList); in GetAllItem()
131 *size = childList.size(); in GetAllItem()
134 (*items)[i] = reinterpret_cast<ArkUINodeHandle>(childList[i]); in GetAllItem()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkbox/
H A Dcheckbox_layout_algorithm.cpp81 const auto& childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local
83 for (const auto& child : childList) { in Measure()
/foundation/arkui/ace_engine/test/unittest/core/pattern/flex/
H A Dflex_new_test_ng.cpp164 auto childList = iterNodes->second; in HWTEST_F() local
165 auto& child = *childList.begin(); in HWTEST_F()
372 auto childList = iterNodes->second; in HWTEST_F() local
373 auto iterChilds = childList.rbegin(); in HWTEST_F()
441 auto childList = iterNodes->second; in HWTEST_F() local
442 auto iterChilds = childList.rbegin(); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Drender_list.cpp804 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()
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dlazy_for_each_node.cpp439 std::list<std::pair<std::string, RefPtr<UINode>>> childList; in LoadChildren() local
440 const auto& items = builder_->GetItems(childList); in LoadChildren()
443 for (auto& node : childList) { in LoadChildren()
H A Dlazy_for_each_builder.cpp285 void LazyForEachBuilder::Transit(std::list<std::pair<std::string, RefPtr<UINode>>>& childList) in Transit() argument
294 childList.emplace_back(key, node.second); in Transit()
302 std::list<std::pair<std::string, RefPtr<UINode>>>& childList) in GetItems()
345 Transit(childList); in GetItems()
301 GetItems( std::list<std::pair<std::string, RefPtr<UINode>>>& childList) GetItems() argument
H A Dlazy_for_each_builder.h152 void Transit(std::list<std::pair<std::string, RefPtr<UINode>>>& childList);
154 std::map<int32_t, LazyForEachChild>& GetItems(std::list<std::pair<std::string, RefPtr<UINode>>>& childList);
/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/
H A Djs_card_parser.cpp1331 auto childList = rootJson->GetValue("children"); in UpdateDomNode() local
1332 UpdateChildRen(childList, page, selfId, idArray, dataJson, styleJson, propsJson); in UpdateDomNode()
1335 void JsCardParser::UpdateChildRen(const std::unique_ptr<JsonValue>& childList, const RefPtr<Framework::JsAcePage>& page, in UpdateChildRen() argument
1339 if (childList && childList->IsValid()) { in UpdateChildRen()
1340 auto child = childList->GetChild(); in UpdateChildRen()
1717 auto childList = rootJson->GetValue("children"); in CreateDomNode() local
1718 if (childList && childList->IsValid()) { in CreateDomNode()
1719 auto child = childList in CreateDomNode()
[all...]
H A Djs_card_parser.h198 void UpdateChildRen(const std::unique_ptr<JsonValue>& childList, const RefPtr<Framework::JsAcePage>& page,
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gauge/
H A Dgauge_layout_algorithm.cpp41 auto childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local
43 for (const auto& child : childList) { in Measure()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/
H A Dbutton_layout_algorithm.cpp49 const auto& childList = layoutWrapper->GetAllChildrenWithBuild(); in Measure() local
51 for (const auto& child : childList) { in Measure()
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler.cpp1401 std::vector<std::shared_ptr<RSRenderNode>> childList; in OnParallelRenderBegin() local
1404 childList.push_back(child); in OnParallelRenderBegin()
1409 g_calcPerfSavedChildren.emplace_back(parent, childList); in OnParallelRenderBegin()
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Drender_node.h546 void PaintChildList(const std::list<RefPtr<RenderNode>>& childList, RenderContext& context, const Offset& offset);
H A Drender_node.cpp437 const std::list<RefPtr<RenderNode>>& childList, RenderContext& context, const Offset& offset) in PaintChildList()
439 for (const auto& item : SortChildrenByZIndex(childList)) { in PaintChildList()
436 PaintChildList( const std::list<RefPtr<RenderNode>>& childList, RenderContext& context, const Offset& offset) PaintChildList() argument
/foundation/arkui/ace_engine/frameworks/core/components/swiper/
H A Drender_swiper.cpp3462 std::list<RefPtr<RenderNode>> childList; in GetPaintChildList() local
3468 childList.emplace_back(child); in GetPaintChildList()
3472 return childList; in GetPaintChildList()

Completed in 31 milliseconds