Searched refs:m_paintRect (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/platform/gtk/ |
D | WidgetRenderingContext.cpp | 80 m_paintRect = graphicsContext->getCTM().mapRect(targetRect); in WidgetRenderingContext() 90 m_paintRect = IntRect(IntPoint(m_extraSpace.width(), m_extraSpace.height()), in WidgetRenderingContext() 149 …GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.… in gtkPaintBox() 155 allocation.x += m_paintRect.x; in gtkPaintBox() 156 allocation.y += m_paintRect.y; in gtkPaintBox() 165 …GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.… in gtkPaintFlatBox() 172 …GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.… in gtkPaintFocus() 179 …GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.… in gtkPaintSlider() 180 …gtk_paint_slider(gtk_widget_get_style(widget), m_target, stateType, shadowType, &m_paintRect, widg… in gtkPaintSlider() 186 …GdkRectangle paintRect = { m_paintRect.x + rect.x(), m_paintRect.y + rect.y(), rect.width(), rect.… in gtkPaintCheck() [all …]
|
D | WidgetRenderingContext.h | 57 GdkRectangle m_paintRect; variable
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | WebViewHost.cpp | 1215 m_paintRect = WebRect(); in reset() 1457 if (m_paintRect.isEmpty()) { in updatePaintRect() 1458 m_paintRect = rect; in updatePaintRect() 1461 int left = min(m_paintRect.x, rect.x); in updatePaintRect() 1462 int top = min(m_paintRect.y, rect.y); in updatePaintRect() 1463 int right = max(m_paintRect.x + m_paintRect.width, rect.x + rect.width); in updatePaintRect() 1464 int bottom = max(m_paintRect.y + m_paintRect.height, rect.y + rect.height); in updatePaintRect() 1465 m_paintRect = WebRect(left, top, right - left, bottom - top); in updatePaintRect() 1498 int left = max(m_paintRect.x, clientRect.x); in paintInvalidatedRegion() 1499 int top = max(m_paintRect.y, clientRect.y); in paintInvalidatedRegion() [all …]
|
D | WebViewHost.h | 336 WebKit::WebRect m_paintRect; variable
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | LayerTilerChromium.cpp | 267 m_paintRect = layerRectToContentRect(dirtyLayerRect); in update() 271 m_canvas.resize(m_paintRect.size()); in update() 278 canvasPainter.context()->translate(-m_paintRect.x(), -m_paintRect.y()); in update() 281 painter.paint(*canvasPainter.context(), m_paintRect); in update() 290 updateFromPixels(m_updateRect, m_paintRect, locker.pixels()); in uploadCanvas()
|
D | LayerTilerChromium.h | 161 IntRect m_paintRect; variable
|
/external/webkit/Tools/ |
D | ChangeLog-2010-05-24 | 519 (WebViewHost::canvas): Remove m_paintRect initialization in canvas(). 520 This line updated m_paintRect unexpectedly during paintRect(). 521 We don't need to initialize m_paintRect because show() does it. 882 (WebViewHost::canvas): Remove m_paintRect initialization in canvas(). 883 This line updated m_paintRect unexpectedly during paintRect(). 884 We don't need to initialize m_paintRect because show() does it.
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2011-02-16 | 22672 to draw instead of m_paintRect. This is important when we're painting
|