HomeSort by relevance Sort by last modified time
    Searched refs:inflatedRect (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/platform/mac/
ThemeMac.mm 210 IntRect inflatedRect = inflateRect(zoomedRect, zoomedSize, checkboxMargins(controlSize), zoomFactor);
213 inflatedRect.setWidth(inflatedRect.width() / zoomFactor);
214 inflatedRect.setHeight(inflatedRect.height() / zoomFactor);
215 context->translate(inflatedRect.x(), inflatedRect.y());
217 context->translate(-inflatedRect.x(), -inflatedRect.y());
220 [checkboxCell drawWithFrame:NSRect(inflatedRect) inView:scrollView->documentView()]
    [all...]
  /external/webkit/WebCore/platform/chromium/
ThemeChromiumMac.mm 360 IntRect inflatedRect = inflateRect(zoomedRect, zoomedSize, checkboxMargins(controlSize), zoomFactor);
363 inflatedRect.setWidth(inflatedRect.width() / zoomFactor);
364 inflatedRect.setHeight(inflatedRect.height() / zoomFactor);
365 context->translate(inflatedRect.x(), inflatedRect.y());
367 context->translate(-inflatedRect.x(), -inflatedRect.y());
372 [checkboxCell drawWithFrame:NSRect(inflatedRect) inView:FlippedView()]
    [all...]
  /external/webkit/WebCore/rendering/
RootInlineBox.cpp 138 IntRect inflatedRect = enclosingIntRect(page->chrome()->client()->customHighlightRect(renderer()->node(), renderer()->style()->highlight(), rootRect));
139 setHorizontalOverflowPositions(leftLayoutOverflow(), rightLayoutOverflow(), min(leftVisualOverflow(), inflatedRect.x()), max(rightVisualOverflow(), inflatedRect.right()));
140 setVerticalOverflowPositions(topLayoutOverflow(), bottomLayoutOverflow(), min(topVisualOverflow(), inflatedRect.y()), max(bottomVisualOverflow(), inflatedRect.bottom()), height());
157 FloatRect inflatedRect = page->chrome()->client()->customHighlightRect(renderer()->node(), highlightType, rootRect);
158 if (inflatedRect.intersects(paintInfo.rect))
RenderThemeSafari.cpp 418 IntRect inflatedRect = inflateRect(r, checkboxSizes()[controlSize], checkboxMargins(controlSize));
419 paintThemePart(SafariTheme::CheckboxPart, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
457 IntRect inflatedRect = inflateRect(r, radioSizes()[controlSize], radioMargins(controlSize));
458 paintThemePart(RadioButtonPart, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
583 IntRect inflatedRect = r;
594 if (inflatedRect.height() > size.height()) {
595 inflatedRect.setY(inflatedRect.y() + (inflatedRect.height() - size.height()) / 2);
596 inflatedRect.setHeight(size.height())
    [all...]
RenderThemeChromiumMac.mm 819 IntRect inflatedRect = r;
821 inflatedRect = inflateRect(inflatedRect, size, popupButtonMargins(), zoomLevel);
827 paintInfo.context->clip(inflatedRect);
831 inflatedRect.setWidth(inflatedRect.width() / zoomLevel);
832 inflatedRect.setHeight(inflatedRect.height() / zoomLevel);
833 paintInfo.context->translate(inflatedRect.x(), inflatedRect.y())
    [all...]
RenderThemeMac.mm 748 IntRect inflatedRect = r;
750 inflatedRect = inflateRect(inflatedRect, size, popupButtonMargins(), zoomLevel);
756 paintInfo.context->clip(inflatedRect);
760 inflatedRect.setWidth(inflatedRect.width() / zoomLevel);
761 inflatedRect.setHeight(inflatedRect.height() / zoomLevel);
762 paintInfo.context->translate(inflatedRect.x(), inflatedRect.y())
    [all...]
  /external/webkit/WebCore/platform/qt/
RenderThemeQt.cpp 244 QRect inflatedRect = inflateButtonRect(rect, qStyle());
245 rect = IntRect(inflatedRect.x(), inflatedRect.y(), inflatedRect.width(), inflatedRect.height());

Completed in 1984 milliseconds