Lines Matching defs:view
294 const RefPtr<AceView>& view, double density, int32_t width, int32_t height, sptr<OHOS::Rosen::Window>& rsWindow)
296 CHECK_NULL_VOID(view);
297 auto container = AceType::DynamicCast<DialogContainer>(AceEngine::Get().GetContainer(view->GetInstanceId()));
303 auto window = std::make_shared<NG::RosenWindow>(rsWindow, taskExecutor, view->GetInstanceId());
305 auto platformWindow = PlatformWindow::Create(view);
309 container->AttachView(std::move(window), view, density, width, height, rsWindow->GetWindowId());
313 const RefPtr<AceView>& view, double density, int32_t width, int32_t height, sptr<OHOS::Rosen::Window>& rsWindow)
316 CHECK_NULL_VOID(view);
317 auto container = AceType::DynamicCast<DialogContainer>(AceEngine::Get().GetContainer(view->GetInstanceId()));
322 auto window = std::make_shared<NG::RosenWindow>(rsWindow, taskExecutor, view->GetInstanceId());
323 container->AttachView(std::move(window), view, density, width, height, rsWindow->GetWindowId());
327 void DialogContainer::AttachView(std::shared_ptr<Window> window, const RefPtr<AceView>& view, double density,
330 aceView_ = view;