Searched defs:paintRect (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEOffset.cpp70 FloatRect paintRect = inputEffect(0)->absolutePaintRect(); local
72 paintRect.move(filter->applyHorizontalScale(m_dx), filter->applyVerticalScale(m_dy));
73 paintRect.intersect(maxEffectRect());
74 setAbsolutePaintRect(enclosingIntRect(paintRect));
H A DSourceAlpha.cpp50 FloatRect paintRect = filter->sourceImageRect(); local
51 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
52 setAbsolutePaintRect(enclosingIntRect(paintRect));
H A DSourceGraphic.cpp49 FloatRect paintRect = filter->sourceImageRect(); local
50 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
51 setAbsolutePaintRect(enclosingIntRect(paintRect));
H A DFEMorphology.cpp87 FloatRect paintRect = inputEffect(0)->absolutePaintRect(); local
89 paintRect.inflateX(filter->applyHorizontalScale(m_radiusX));
90 paintRect.inflateY(filter->applyVerticalScale(m_radiusY));
91 paintRect.intersect(maxEffectRect());
92 setAbsolutePaintRect(enclosingIntRect(paintRect));
/external/webkit/Source/WebCore/platform/gtk/
H A DWidgetRenderingContext.cpp149 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
159 gtk_paint_box(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, local
160 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height);
165 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
166 gtk_paint_flat_box(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, local
167 widget, detail, paintRect.x, paintRect
172 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
173 gtk_paint_focus(gtk_widget_get_style(widget), m_target, stateType, &paintRect, widget, local
179 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
186 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
187 gtk_paint_check(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, widget, local
193 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
194 gtk_paint_option(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, widget, local
200 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
201 gtk_paint_shadow(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, widget, local
207 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
208 gtk_paint_arrow(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, widget, detail, local
214 GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.height() }; local
215 gtk_paint_vline(gtk_widget_get_style(widget), m_target, stateType, &paintRect, widget, detail, local
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DPageOverlay.cpp103 IntRect paintRect = intersection(dirtyRect, bounds()); local
104 if (paintRect.isEmpty())
111 m_client->drawRect(this, graphicsContext, paintRect);
H A DFindController.cpp185 IntRect paintRect = selectionRect; local
186 paintRect.move(selectedFrame->view()->frameRect().x(), selectedFrame->view()->frameRect().y());
187 paintRect.move(-selectedFrame->view()->scrollOffset());
189 graphicsContext->translate(-paintRect.x(), -paintRect.y());
193 selectedFrame->view()->paint(graphicsContext.get(), paintRect);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerTilerChromium.cpp294 void LayerTilerChromium::updateFromPixels(const IntRect& contentRect, const IntRect& paintRect, const uint8_t* paintPixels) argument
318 sourceRect.intersect(paintRect);
338 IntPoint paintOffset(sourceRect.x() - paintRect.x(), sourceRect.y() - paintRect.y());
343 if (paintOffset.x() + destRect.width() > paintRect.width())
345 if (paintOffset.y() + destRect.height() > paintRect.height())
349 if (paintRect.width() == sourceRect.width() && !paintOffset.x())
350 pixelSource = &paintPixels[4 * paintOffset.y() * paintRect.width()];
356 &paintPixels[4 * (paintOffset.x() + (paintOffset.y() + row) * paintRect.width())],
/external/webkit/Source/WebCore/rendering/
H A DRenderWidget.cpp296 IntRect paintRect = paintInfo.rect; local
300 // not the root. In this case, shift the CTM and adjust the paintRect to be root-relative to fix plug-in drawing.
303 paintRect.move(-paintOffset);
305 m_widget->paint(paintInfo.context, paintRect);
H A DRenderTreeAsText.cpp647 const IntRect& paintRect, int indent, RenderAsTextBehavior behavior)
650 IntRect paintDirtyRect(paintRect);
646 writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* l, const IntRect& paintRect, int indent, RenderAsTextBehavior behavior) argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebPopupMenuImpl.cpp283 void WebPopupMenuImpl::invalidateContentsAndWindow(const IntRect& paintRect, bool /*immediate*/) argument
285 if (paintRect.isEmpty())
288 m_client->didInvalidateRect(paintRect);
/external/webkit/Source/WebKit/wx/
H A DWebView.cpp679 wxRect paintRect = GetUpdateRegion().GetBox(); local
688 frame->view()->paint(&gc, paintRect);
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp950 IntRect paintRect = rect; local
952 paintRect.intersect(visibleContentRect());
954 if (rect != paintRect)
957 if (paintRect.isEmpty())
960 platformRepaintContentRectangle(paintRect, now);
965 hostWindow()->invalidateContentsAndWindow(contentsToWindow(paintRect), now /*immediate*/);
/external/skia/src/gpu/
H A DSkGpuDevice.cpp1455 GrRect paintRect; local
1456 paintRect.setLTRB(GrFixedToScalar((srcRect.fLeft << 16) / bitmap.width()),
1469 left = paintRect.left() + border;
1470 right = paintRect.right() - border;
1472 left = right = GrScalarHalf(paintRect.left() + paintRect.right());
1476 top = paintRect.top() + border;
1477 bottom = paintRect.bottom() - border;
1479 top = bottom = GrScalarHalf(paintRect.top() + paintRect
[all...]
/external/webkit/Source/WebCore/page/
H A DFrameView.cpp1542 IntRect paintRect = r; local
1544 paintRect.intersect(visibleContentRect());
1546 if (r != paintRect)
1549 if (paintRect.isEmpty())
1559 m_repaintRects.append(paintRect);
1561 m_repaintRects[0].unite(paintRect);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp1468 void WebViewHost::paintRect(const WebRect& rect) function in class:WebViewHost
1511 paintRect(rect);

Completed in 3160 milliseconds