Lines Matching defs:left
136 int32_t left = static_cast<int32_t>(skiRect.left());
140 WLOGFI("calc rect from path,[%{public}d, %{public}d, %{public}u, %{public}u]", left, top, width, height);
141 DMRect cutoutMinOuterRect = {.posX_ = left, .posY_ = top, .width_ = width, .height_ = height};
158 uint32_t left = static_cast<uint32_t>(curvedScreenBoundary_[0]);
162 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
177 if ((left > displayWidth / 2) || (right > displayWidth / 2) || // invalid if more than 1/2 width
191 uint32_t left = static_cast<uint32_t>(curvedScreenBoundary_[0]);
197 DMRect leftRect = CreateWaterfallRect(0, 0, left, displayHeight);
206 DMRect topRect = CreateWaterfallRect(0, 0, displayHeight, left);
215 DMRect rightRect = CreateWaterfallRect(displayWidth - left, 0, left, displayHeight);
224 DMRect bottomRect = CreateWaterfallRect(0, displayWidth - left, displayHeight, left);
305 DMRect DisplayCutoutController::CreateWaterfallRect(uint32_t left, uint32_t top, uint32_t width, uint32_t height)
310 return DMRect {left, top, width, height};