HomeSort by relevance Sort by last modified time
    Searched refs:damageRect (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.h 42 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.h 43 virtual bool paint(Scrollbar*, GraphicsContext*, const IntRect& damageRect);
ScrollbarThemeQt.cpp 140 bool ScrollbarThemeQt::paint(Scrollbar* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
143 scrollbar->invalidateRect(damageRect);
154 p.painter->setClipRect(opt->rect.intersected(damageRect), Qt::IntersectClip);
  /external/webkit/Source/WebKit/win/
WebScrollBar.cpp 161 /* [in] */ RECT damageRect)
164 IntRect rect(damageRect.left, damageRect.top, damageRect.right-damageRect.left, damageRect.bottom-damageRect.top);
WebScrollBar.h 84 /* [in] */ RECT damageRect);
  /external/webkit/Source/WebCore/platform/
ScrollbarThemeComposite.cpp 58 bool ScrollbarThemeComposite::paint(Scrollbar* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
60 // Create the ScrollbarControlPartMask based on the damageRect
69 if (damageRect.intersects(backButtonStartPaintRect))
72 if (damageRect.intersects(backButtonEndPaintRect))
75 if (damageRect.intersects(forwardButtonStartPaintRect))
78 if (damageRect.intersects(forwardButtonEndPaintRect))
86 if (damageRect.intersects(trackPaintRect))
92 if (damageRect.intersects(thumbRect))
94 if (damageRect.intersects(startTrackRect))
96 if (damageRect.intersects(endTrackRect)
    [all...]
ScrollbarThemeComposite.h 35 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
Scrollbar.cpp 159 void Scrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
166 if (context->paintingDisabled() || !frameRect().intersects(damageRect))
169 if (!theme()->paint(this, context, damageRect))
170 Widget::paint(context, damageRect);
Scrollbar.h 84 virtual void paint(GraphicsContext*, const IntRect& damageRect);
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.h 39 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk.cpp 185 bool ScrollbarThemeGtk::paint(Scrollbar* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
190 // Create the ScrollbarControlPartMask based on the damageRect
199 if (damageRect.intersects(backButtonStartPaintRect))
202 if (damageRect.intersects(backButtonEndPaintRect))
205 if (damageRect.intersects(forwardButtonStartPaintRect))
208 if (damageRect.intersects(forwardButtonEndPaintRect))
213 if (damageRect.intersects(trackPaintRect))
227 if (damageRect.intersects(currentThumbRect))
ScrollbarThemeGtk.h 46 bool paint(Scrollbar*, GraphicsContext*, const IntRect& damageRect);
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 490 IntRect damageRect(clientRect());
491 damageRect.setY(m_itemHeight * (index - m_scrollOffset));
492 damageRect.setHeight(m_itemHeight);
494 damageRect.setWidth(damageRect.width() - m_scrollbar->frameRect().width());
496 RECT r = damageRect;
560 void PopupMenuWin::paint(const IntRect& damageRect, HDC hdc)
600 // listRect is the damageRect translated into the coordinates of the entire menu list (which is itemCount * m_itemHeight pixels tall)
601 IntRect listRect = damageRect;
618 IntRect itemRect(0, (index - m_scrollOffset) * m_itemHeight, damageRect.width(), m_itemHeight)
    [all...]
PopupMenuWin.h 75 void paint(const IntRect& damageRect, HDC = 0);
  /external/webkit/Source/WebCore/rendering/
RenderScrollbar.h 69 virtual void paint(GraphicsContext*, const IntRect& damageRect);
RenderLayer.h 272 void paintOverflowControls(GraphicsContext*, int tx, int ty, const IntRect& damageRect, bool paintingOverlayControls = false);
273 void paintScrollCorner(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
274 void paintResizer(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
383 void paint(GraphicsContext*, const IntRect& damageRect, PaintBehavior = PaintBehaviorNormal, RenderObject* paintingRoot = 0);
385 void paintOverlayScrollbars(GraphicsContext*, const IntRect& damageRect, PaintBehavior, RenderObject* paintingRoot);
404 bool intersectsDamageRect(const IntRect& layerBounds, const IntRect& damageRect, const RenderLayer* rootLayer) const;
    [all...]
RenderLayerBacking.cpp     [all...]
RenderLayer.cpp     [all...]
RenderScrollbar.cpp 101 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
107 Scrollbar::paint(context, damageRect);
RenderTreeAsText.cpp 659 IntRect layerBounds, damageRect, clipRectToApply, outlineRect;
660 l->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, true);
666 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect, rootLayer);
670 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, LayerPaintPhaseBackground, indent, behavior);
684 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 446 IntRect damageRect(clientRect());
447 damageRect.setY(m_itemHeight * (index - m_scrollOffset));
448 damageRect.setHeight(m_itemHeight);
450 damageRect.setWidth(damageRect.width() - m_scrollbar->frameRect().width());
452 RECT r = damageRect;
805 void WebPopupMenuProxyWin::paint(const IntRect& damageRect, HDC hdc)
838 IntRect translatedDamageRect = damageRect;
840 m_data.m_notSelectedBackingStore->paint(context, damageRect.location(), translatedDamageRect);
849 m_scrollbar->paint(&context, damageRect);
    [all...]
WebPopupMenuProxyWin.h 111 void paint(const WebCore::IntRect& damageRect, HDC = 0);
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 92 void WebPluginContainerImpl::paint(GraphicsContext* gc, const IntRect& damageRect)
101 if (!frameRect().intersects(damageRect))
121 IntRect(view->contentsToWindow(damageRect.location()), damageRect.size());
286 IntRect damageRect = convertToContainingWindow(static_cast<IntRect>(rect));
290 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 57 HRESULT paint([in] HDC dc, [in] RECT damageRect);
  /external/webkit/Source/WebCore/platform/efl/
ScrollbarEfl.cpp 213 void ScrollbarEfl::paint(GraphicsContext* graphicsContext, const IntRect& damageRect)

Completed in 195 milliseconds

1 2