Lines Matching defs:view

1106 void AceContainer::SetView(const RefPtr<AceView>& view, double density, int32_t width, int32_t height,
1109 CHECK_NULL_VOID(view);
1110 auto container = AceType::DynamicCast<AceContainer>(AceEngine::Get().GetContainer(view->GetInstanceId()));
1115 auto window = std::make_shared<NG::RosenWindow>(rsWindow, taskExecutor, view->GetInstanceId());
1117 auto platformWindow = PlatformWindow::Create(view);
1121 AceContainer::SetUIWindow(view->GetInstanceId(), rsWindow);
1122 container->AttachView(window, view, density, width, height, rsWindow->GetWindowId(), callback);
1126 const RefPtr<AceView>& view, double density, float width, float height, sptr<OHOS::Rosen::Window> rsWindow)
1129 CHECK_NULL_RETURN(view, UIContentErrorCode::NULL_POINTER);
1130 auto container = AceType::DynamicCast<AceContainer>(AceEngine::Get().GetContainer(view->GetInstanceId()));
1134 AceContainer::SetUIWindow(view->GetInstanceId(), rsWindow);
1137 auto window = std::make_shared<FormRenderWindow>(taskExecutor, view->GetInstanceId());
1138 container->AttachView(window, view, density, width, height, view->GetInstanceId(), nullptr);
1140 auto window = std::make_shared<NG::RosenWindow>(rsWindow, taskExecutor, view->GetInstanceId());
1141 container->AttachView(window, view, density, width, height, rsWindow->GetWindowId(), nullptr);
1840 // GPU and IO thread is standalone while disable native view
1977 void AceContainer::AttachView(std::shared_ptr<Window> window, const RefPtr<AceView>& view, double density, float width,
1980 aceView_ = view;