Home
last modified time | relevance | path

Searched refs:StackComponent (Results 1 – 25 of 27) sorted by relevance

12

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dstack_model_impl.cpp28 RefPtr<StackComponent> component = in Create()
29 … AceType::MakeRefPtr<StackComponent>(alignment, StackFit::KEEP, Overflow::OBSERVABLE, children); in Create()
38 RefPtr<StackComponent> component = in Create()
39 … AceType::MakeRefPtr<StackComponent>(alignment, StackFit::KEEP, Overflow::OBSERVABLE, children); in Create()
47 …auto stack = AceType::DynamicCast<StackComponent>(ViewStackProcessor::GetInstance()->GetMainCompon… in SetStackFit()
55 …auto stack = AceType::DynamicCast<StackComponent>(ViewStackProcessor::GetInstance()->GetMainCompon… in SetOverflow()
63 …auto stack = AceType::DynamicCast<StackComponent>(ViewStackProcessor::GetInstance()->GetMainCompon… in SetAlignment()
71 …auto stack = AceType::DynamicCast<StackComponent>(ViewStackProcessor::GetInstance()->GetMainCompon… in SetHasWidth()
83 …auto stack = AceType::DynamicCast<StackComponent>(ViewStackProcessor::GetInstance()->GetMainCompon… in SetHasHeight()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dstack_component.cpp23 StackComponent::StackComponent(jerry_value_t options, jerry_value_t children, AppStyleManager* styl… in StackComponent() function in OHOS::ACELite::StackComponent
30 UIView *StackComponent::GetComponentRootView() const in GetComponentRootView()
35 bool StackComponent::ProcessChildren() in ProcessChildren()
42 void StackComponent::PostUpdate(uint16_t attrKeyId) in PostUpdate()
47 void StackComponent::AttachView(const Component *child) in AttachView()
H A Dstack_component.h24 class StackComponent final : public Component {
26 ACE_DISALLOW_COPY_AND_MOVE(StackComponent);
27 StackComponent() = delete;
28 StackComponent(jerry_value_t options, jerry_value_t children, AppStyleManager* styleManager);
29 ~StackComponent() override {} in ~StackComponent()
H A Dcomponent_factory.h100 component = new StackComponent(options, children, styleManager); in CreateComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stage/
H A Dstage_component.h26 class StageComponent : public StackComponent {
27 DECLARE_ACE_TYPE(StageComponent, StackComponent);
31 : StackComponent(Alignment::TOP_LEFT, StackFit::INHERIT, Overflow::OBSERVABLE, children) in StageComponent()
34 : StackComponent(Alignment::TOP_LEFT, StackFit::INHERIT, Overflow::OBSERVABLE, children), in StageComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stack/
H A Dstack_component.h30 class ACE_EXPORT StackComponent : public ComponentGroup {
31 DECLARE_ACE_TYPE(StackComponent, ComponentGroup);
34 StackComponent( in StackComponent() function
38 ~StackComponent() override = default;
H A Dstack_component.cpp24 void StackComponent::SetNavigationBar(const RefPtr<Component>& navigationBar) in SetNavigationBar()
H A Drender_stack.cpp25 const auto stack = AceType::DynamicCast<StackComponent>(component); in Update()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/overlay/
H A Doverlay_component.h23 class OverlayComponent : public StackComponent {
24 DECLARE_ACE_TYPE(OverlayComponent, StackComponent);
28 : StackComponent(Alignment::TOP_LEFT, StackFit::INHERIT, Overflow::OBSERVABLE, children) in OverlayComponent()
H A Doverlay_component.cpp30 auto renderNode = StackComponent::CreateRenderNode(); in CreateRenderNode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/page_transition/
H A Dpage_transition_component.h31 class ACE_EXPORT PageTransitionComponent : public StackComponent {
32 DECLARE_ACE_TYPE(PageTransitionComponent, StackComponent);
36 …: StackComponent(Alignment::TOP_LEFT, StackFit::INHERIT, Overflow::CLIP, std::list<RefPtr<Componen… in PageTransitionComponent()
H A Dpage_transition_element.h69 void BuildSeparatedChild(const RefPtr<StackComponent>& component);
70 void BuildCombinedChild(const RefPtr<StackComponent>& component);
H A Dpage_transition_component.cpp24 auto renderNode = StackComponent::CreateRenderNode(); in CreateRenderNode()
H A Dpage_transition_element.cpp421 void PageTransitionElement::BuildCombinedChild(const RefPtr<StackComponent>& component) in BuildCombinedChild()
462 void PageTransitionElement::BuildSeparatedChild(const RefPtr<StackComponent>& component) in BuildSeparatedChild()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/indexer/
H A Dindexer_list_component.cpp78 …stack_ = AceType::MakeRefPtr<StackComponent>(Alignment::CENTER_LEFT, StackFit::KEEP, Overflow::CLI… in BuildChildren()
80 …stack_ = AceType::MakeRefPtr<StackComponent>(Alignment::CENTER_RIGHT, StackFit::KEEP, Overflow::CL… in BuildChildren()
H A Dindexer_list_component.h103 RefPtr<StackComponent> stack_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_document.h64 const RefPtr<StackComponent>& GetRootStackComponent() const in GetRootStackComponent()
101 RefPtr<StackComponent> rootStackComponent_;
H A Ddom_stack.h71 RefPtr<StackComponent> stackChild_;
H A Ddom_stack.cpp22 stackChild_ = AceType::MakeRefPtr<StackComponent>( in DOMStack()
H A Ddom_document.cpp454 rootStackComponent_ = AceType::MakeRefPtr<StackComponent>( in SetUpRootComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/side_bar/
H A Dside_bar_container_component.h32 class ACE_EXPORT SideBarContainerComponent : public StackComponent {
33 DECLARE_ACE_TYPE(SideBarContainerComponent, StackComponent);
H A Dside_bar_container_component.cpp26 : StackComponent(Alignment::CENTER_LEFT, StackFit::KEEP, Overflow::SCROLL, children) in SideBarContainerComponent()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/
H A Droot_component_mock.cpp61 rootContainer_ = new StackComponent(UNDEFINED, UNDEFINED, containerStyleMgr_); in PrepareRootContainer()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/container_modal/
H A Dcontainer_modal_component.cpp228 auto stackComponent = AceType::MakeRefPtr<StackComponent>( in BuildInnerChild()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/frontend/
H A Dcj_page_router.cpp85 auto rootStackComponent = AceType::MakeRefPtr<StackComponent>( in LoadNativeViewClassic()

12