/foundation/arkui/ace_engine/test/unittest/core/layout/ |
H A D | box_layout_algorithm_test_ng.cpp | 492 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 D | text_clock_layout_algorithm.cpp | 32 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 D | render_multi_child_scroll.h | 71 auto childList = GetChildren(); variable 72 for (const auto& child : childList) {
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_item_layout_algorithm.cpp | 43 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 D | box_layout_algorithm.h | 46 LayoutWrapper* layoutWrapper, const std::list<RefPtr<LayoutWrapper>>& childList);
|
H A D | box_layout_algorithm.cpp | 71 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 D | flex_layout_algorithm.cpp | 322 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 D | switch_layout_algorithm.cpp | 83 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 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()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_adapter_impl.cpp | 129 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 D | checkbox_layout_algorithm.cpp | 81 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 D | flex_new_test_ng.cpp | 164 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 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()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | lazy_for_each_node.cpp | 439 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 D | lazy_for_each_builder.cpp | 285 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 D | lazy_for_each_builder.h | 152 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 D | js_card_parser.cpp | 1331 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 D | js_card_parser.h | 198 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 D | gauge_layout_algorithm.cpp | 41 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 D | button_layout_algorithm.cpp | 49 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 D | rs_profiler.cpp | 1401 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 D | render_node.h | 546 void PaintChildList(const std::list<RefPtr<RenderNode>>& childList, RenderContext& context, const Offset& offset);
|
H A D | render_node.cpp | 437 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 D | render_swiper.cpp | 3462 std::list<RefPtr<RenderNode>> childList; in GetPaintChildList() local 3468 childList.emplace_back(child); in GetPaintChildList() 3472 return childList; in GetPaintChildList()
|