Home
last modified time | relevance | path

Searched refs:componentChildren (Results 1 – 21 of 21) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dlinear_split_model_impl.cpp28 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
29 auto rowSplit = AceType::MakeRefPtr<RowSplitComponent>(componentChildren); in Create()
34 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
35 auto columnSplit = AceType::MakeRefPtr<ColumnSplitComponent>(componentChildren); in Create()
H A Dstepper_item_model_impl.cpp32 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
34 FlexDirection::ROW, FlexAlign::FLEX_START, FlexAlign::FLEX_START, componentChildren); in Create()
H A Dwater_flow_model_impl.cpp24 std::list<RefPtr<Component>> componentChildren; in Create() local
25 auto waterflowComponent = AceType::MakeRefPtr<V2::WaterFlowComponent>(componentChildren); in Create()
H A Dstepper_model_impl.cpp29 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
30 auto stepperComponent = AceType::MakeRefPtr<OHOS::Ace::StepperComponent>(componentChildren); in Create()
H A Dshape_model_impl.cpp27 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
29 AceType::MakeRefPtr<OHOS::Ace::ShapeContainerComponent>(componentChildren); in Create()
H A Dgrid_model_impl.cpp35 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
36 …::GridLayoutComponent> gridComponent = AceType::MakeRefPtr<GridLayoutComponent>(componentChildren); in Create()
H A Dswiper_model_impl.cpp27 std::list<RefPtr<OHOS::Ace::Component>> componentChildren; in Create() local
28 …e::SwiperComponent> component = AceType::MakeRefPtr<OHOS::Ace::SwiperComponent>(componentChildren); in Create()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drender_svg_path.cpp53 const auto& componentChildren = pathComponent->GetChildren(); in PrepareAnimations() local
54 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_polygon.cpp54 const auto &componentChildren = polygonComponent->GetChildren(); in PrepareAnimations() local
55 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_text_path.cpp50 const auto& componentChildren = textPathComponent->GetChildren(); in PrepareAnimations() local
51 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_circle.cpp51 const auto& componentChildren = circleComponent->GetChildren(); in PrepareAnimations() local
52 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_ellipse.cpp53 const auto& componentChildren = ellipseComponent->GetChildren(); in PrepareAnimations() local
54 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_line.cpp59 const auto& componentChildren = lineComponent->GetChildren(); in PrepareAnimations() local
60 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_filter.cpp49 const auto& componentChildren = filterComponent->GetChildren(); in PrepareAnimations() local
50 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_rect.cpp47 const auto& componentChildren = rectComponent->GetChildren(); in PrepareAnimations() local
48 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_mask.cpp67 const auto& componentChildren = maskComponent->GetChildren(); in PrepareAnimations() local
68 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_text.cpp56 const auto& componentChildren = textComponent->GetChildren(); in PrepareAnimations() local
57 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg_pattern.cpp69 const auto& componentChildren = patternComponent->GetChildren(); in PrepareAnimations() local
70 RenderSvgBase::PrepareAnimation(componentChildren); in PrepareAnimations()
H A Drender_svg.cpp65 const auto& componentChildren = svgComponent->GetChildren(); in AddSvgAnimations() local
66 for (const auto& childComponent : componentChildren) { in AddSvgAnimations()
H A Drender_svg_base.h135 void PrepareAnimation(const std::list<RefPtr<Component>>& componentChildren);
H A Drender_svg_base.cpp649 void RenderSvgBase::PrepareAnimation(const std::list<RefPtr<Component>>& componentChildren) in PrepareAnimation() argument
651 for (const auto& childComponent : componentChildren) { in PrepareAnimation()