Lines Matching defs:rect
664 WSError WindowSessionImpl::UpdateRect(const WSRect& rect, SizeChangeReason reason,
669 Rect wmRect = { rect.posX_, rect.posY_, rect.width_, rect.height_ };
678 ", duration:%{public}d, [name:%{public}s, id:%{public}d]", rect.ToString().c_str(), preRect.ToString().c_str(),
691 layoutCallback_->OnUpdateSessionRect(rect);
1038 void WindowSessionImpl::UpdateViewportConfig(const Rect& rect, WindowSizeChangeReason reason,
1057 if (rect.width_ <= 0 || rect.height_ <= 0) {
1058 TLOGW(WmsLogTag::WMS_LAYOUT, "window rect width: %{public}d, height: %{public}d", rect.width_, rect.height_);
1070 config.SetSize(rect.width_, rect.height_);
1071 config.SetPosition(rect.posX_, rect.posY_);
1097 GetPersistentId(), reason, rect.posX_, rect.posY_, rect.width_, rect.height_, orientation);
1101 GetPersistentId(), reason, rect.posX_, rect.posY_, rect.width_, rect.height_, orientation);
1256 "NotifyFrameLayoutFinish, id: %u, rect: %s, notifyListener: %d",
1259 "NotifyFrameLayoutFinish, id: %{public}u, rect: %{public}s, notifyListener: %{public}d",
1261 WSRect rect = { windowRect.posX_, windowRect.posY_,
1264 session->NotifyFrameLayoutFinishFromApp(window->enableFrameLayoutFinishCb_, rect);
2966 void WindowSessionImpl::NotifySizeChange(Rect rect, WindowSizeChangeReason reason)
2973 listener->OnSizeChange(rect, reason);
2982 listener->OnRectChange(rect, reason);
3781 ", occupied rect: x %{public}u, y %{public}u, w %{public}u, h %{public}u", rsTransaction != nullptr,
3851 void WindowSessionImpl::UpdatePiPRect(const Rect& rect, WindowSizeChangeReason reason)
3859 hostSession->UpdatePiPRect(rect, static_cast<SizeChangeReason>(reason));
3998 WMError WindowSessionImpl::GetCallingWindowRect(Rect& rect) const
4004 return SingletonContainer::Get<WindowAdapter>().GetCallingWindowRect(GetPersistentId(), rect);