Lines Matching defs:coords
872 Rect coords = GetOrigRect();
874 if (!trunc.Intersect(trunc, coords)) {
1113 Rect coords;
1116 coords.SetPosition(x, y);
1117 coords.SetHeight(rectParam->height + lineWidth);
1118 coords.SetWidth(rectParam->width + lineWidth);
1119 baseGfxEngine->DrawRect(gfxDstBuffer, coords, invalidatedArea, drawStyle, OPA_OPAQUE);
1123 coords.SetPosition(x, y);
1124 coords.SetHeight(lineWidth);
1125 coords.SetWidth(rectParam->width);
1126 baseGfxEngine->DrawRect(gfxDstBuffer, coords, invalidatedArea, drawStyle, OPA_OPAQUE);
1128 coords.SetPosition(x + rectParam->width, y);
1129 coords.SetHeight(rectParam->height);
1130 coords.SetWidth(lineWidth);
1131 baseGfxEngine->DrawRect(gfxDstBuffer, coords, invalidatedArea, drawStyle, OPA_OPAQUE);
1133 coords.SetPosition(x, y + lineWidth);
1134 coords.SetHeight(rectParam->height);
1135 coords.SetWidth(lineWidth);
1136 baseGfxEngine->DrawRect(gfxDstBuffer, coords, invalidatedArea, drawStyle, OPA_OPAQUE);
1138 coords.SetPosition(x + lineWidth, y + rectParam->height);
1139 coords.SetHeight(lineWidth);
1140 coords.SetWidth(rectParam->width);
1141 baseGfxEngine->DrawRect(gfxDstBuffer, coords, invalidatedArea, drawStyle, OPA_OPAQUE);
1163 Rect coords;
1164 coords.SetPosition(start.x + (lineWidth + 1) / 2, start.y + (lineWidth + 1) / 2); // 2: half
1165 coords.SetHeight(rectParam->height - lineWidth);
1166 coords.SetWidth(rectParam->width - lineWidth);
1172 BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, coords, invalidatedArea, drawStyle, OPA_OPAQUE);