/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | stack_model_impl.cpp | 28 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 D | stack_component.cpp | 23 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 D | stack_component.h | 24 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 D | component_factory.h | 100 component = new StackComponent(options, children, styleManager); in CreateComponent()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stage/ |
H A D | stage_component.h | 26 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 D | stack_component.h | 30 class ACE_EXPORT StackComponent : public ComponentGroup { 31 DECLARE_ACE_TYPE(StackComponent, ComponentGroup); 34 StackComponent( in StackComponent() function 38 ~StackComponent() override = default;
|
H A D | stack_component.cpp | 24 void StackComponent::SetNavigationBar(const RefPtr<Component>& navigationBar) in SetNavigationBar()
|
H A D | render_stack.cpp | 25 const auto stack = AceType::DynamicCast<StackComponent>(component); in Update()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/overlay/ |
H A D | overlay_component.h | 23 class OverlayComponent : public StackComponent { 24 DECLARE_ACE_TYPE(OverlayComponent, StackComponent); 28 : StackComponent(Alignment::TOP_LEFT, StackFit::INHERIT, Overflow::OBSERVABLE, children) in OverlayComponent()
|
H A D | overlay_component.cpp | 30 auto renderNode = StackComponent::CreateRenderNode(); in CreateRenderNode()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/page_transition/ |
H A D | page_transition_component.h | 31 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 D | page_transition_element.h | 69 void BuildSeparatedChild(const RefPtr<StackComponent>& component); 70 void BuildCombinedChild(const RefPtr<StackComponent>& component);
|
H A D | page_transition_component.cpp | 24 auto renderNode = StackComponent::CreateRenderNode(); in CreateRenderNode()
|
H A D | page_transition_element.cpp | 421 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 D | indexer_list_component.cpp | 78 …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 D | indexer_list_component.h | 103 RefPtr<StackComponent> stack_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_document.h | 64 const RefPtr<StackComponent>& GetRootStackComponent() const in GetRootStackComponent() 101 RefPtr<StackComponent> rootStackComponent_;
|
H A D | dom_stack.h | 71 RefPtr<StackComponent> stackChild_;
|
H A D | dom_stack.cpp | 22 stackChild_ = AceType::MakeRefPtr<StackComponent>( in DOMStack()
|
H A D | dom_document.cpp | 454 rootStackComponent_ = AceType::MakeRefPtr<StackComponent>( in SetUpRootComponent()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/side_bar/ |
H A D | side_bar_container_component.h | 32 class ACE_EXPORT SideBarContainerComponent : public StackComponent { 33 DECLARE_ACE_TYPE(SideBarContainerComponent, StackComponent);
|
H A D | side_bar_container_component.cpp | 26 : 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 D | root_component_mock.cpp | 61 rootContainer_ = new StackComponent(UNDEFINED, UNDEFINED, containerStyleMgr_); in PrepareRootContainer()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/container_modal/ |
H A D | container_modal_component.cpp | 228 auto stackComponent = AceType::MakeRefPtr<StackComponent>( in BuildInnerChild()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/frontend/ |
H A D | cj_page_router.cpp | 85 auto rootStackComponent = AceType::MakeRefPtr<StackComponent>( in LoadNativeViewClassic()
|