Lines Matching refs:rect
41 void WindowProperty::SetWindowRect(const struct Rect& rect)
44 windowRect_ = rect;
169 Rect rect = WindowHelper::TransformRect(transformMat_, windowRect_);
178 float scale = rect.width_ * 1.0f / rectWithoutZAxisOffset.width_;
316 void WindowProperty::SetOriginRect(const Rect& rect)
318 originRect_ = rect;
650 for (const auto& rect : touchHotAreas_) {
651 if (!(parcel.WriteInt32(rect.posX_) && parcel.WriteInt32(rect.posY_) &&
652 parcel.WriteUint32(rect.width_) && parcel.WriteUint32(rect.height_))) {
750 Rect rect = { parcel.ReadInt32(), parcel.ReadInt32(), parcel.ReadUint32(), parcel.ReadUint32() };
751 property->SetWindowRect(rect);