Home
last modified time | relevance | path

Searched refs:rootStackComponent_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_document.cpp331 if (node->GetPosition() == PositionType::PTFIXED && rootStackComponent_) { in RemoveNodes()
332 rootStackComponent_->RemoveChild(node->GetRootComponent()); in RemoveNodes()
347 if (node->GetTag() == DOM_NODE_TAG_NAVIGATION_BAR && rootStackComponent_ && in RemoveNodes()
348 rootStackComponent_->HasNavigationBar()) { in RemoveNodes()
349 …auto rootColumn = AceType::DynamicCast<ColumnComponent>(rootStackComponent_->GetChildren().front()… in RemoveNodes()
454 rootStackComponent_ = AceType::MakeRefPtr<StackComponent>( in SetUpRootComponent()
458 rootStackComponent_->SetMainStackSize(MainStackSize::MIN); in SetUpRootComponent()
459 rootStackComponent_->SetStackFit(StackFit::FIRST_CHILD); in SetUpRootComponent()
461 rootStackComponent_->SetMainStackSize(MainStackSize::MAX); in SetUpRootComponent()
465 rootComposedStack_->SetChild(rootStackComponent_); in SetUpRootComponent()
H A Ddom_document.h66 return rootStackComponent_; in GetRootStackComponent()
101 RefPtr<StackComponent> rootStackComponent_; variable