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

1 2

  /external/webkit/WebCore/platform/chromium/
FramelessScrollView.cpp 75 void FramelessScrollView::paintContents(GraphicsContext*, const IntRect& damageRect)
FramelessScrollView.h 77 virtual void paintContents(GraphicsContext*, const IntRect& damageRect);
ScrollbarThemeChromiumMac.h 42 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
ScrollbarThemeChromiumMac.mm 369 bool ScrollbarThemeChromiumMac::paint(Scrollbar* scrollbar, GraphicsContext* context, const IntRect& damageRect)
402 bufferRect.intersect(damageRect);
  /external/webkit/WebCore/platform/mac/
ScrollbarThemeMac.h 38 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
  /external/webkit/WebCore/platform/qt/
ScrollbarThemeQt.h 43 virtual bool paint(Scrollbar*, GraphicsContext*, const IntRect& damageRect);
ScrollbarThemeQt.cpp 136 bool ScrollbarThemeQt::paint(Scrollbar* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
139 scrollbar->invalidateRect(damageRect);
150 p.painter->setClipRect(opt->rect.intersected(damageRect), Qt::IntersectClip);
  /external/webkit/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 89 /* [in] */ RECT damageRect);
  /external/webkit/WebCore/platform/
ScrollbarThemeComposite.cpp 56 bool ScrollbarThemeComposite::paint(Scrollbar* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
58 // Create the ScrollbarControlPartMask based on the damageRect
67 if (damageRect.intersects(backButtonStartPaintRect))
70 if (damageRect.intersects(backButtonEndPaintRect))
73 if (damageRect.intersects(forwardButtonStartPaintRect))
76 if (damageRect.intersects(forwardButtonEndPaintRect))
84 if (damageRect.intersects(trackPaintRect))
90 if (damageRect.intersects(thumbRect))
92 if (damageRect.intersects(startTrackRect))
94 if (damageRect.intersects(endTrackRect)
    [all...]
ScrollbarThemeComposite.h 35 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
Scrollbar.cpp 169 void Scrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
176 if (context->paintingDisabled() || !frameRect().intersects(damageRect))
179 if (!theme()->paint(this, context, damageRect))
180 Widget::paint(context, damageRect);
Scrollbar.h 84 virtual void paint(GraphicsContext*, const IntRect& damageRect);
PopupMenu.h 116 void paint(const IntRect& damageRect, HDC = 0);
ScrollView.h 240 virtual void paintContents(GraphicsContext*, const IntRect& damageRect) = 0;
  /external/webkit/WebCore/platform/win/
PopupMenuWin.cpp 481 IntRect damageRect(clientRect());
482 damageRect.setY(m_itemHeight * (index - m_scrollOffset));
483 damageRect.setHeight(m_itemHeight);
485 damageRect.setWidth(damageRect.width() - m_scrollbar->frameRect().width());
487 RECT r = damageRect;
556 void PopupMenu::paint(const IntRect& damageRect, HDC hdc)
596 // listRect is the damageRect translated into the coordinates of the entire menu list (which is itemCount * m_itemHeight pixels tall)
597 IntRect listRect = damageRect;
614 IntRect itemRect(0, (index - m_scrollOffset) * m_itemHeight, damageRect.width(), m_itemHeight)
    [all...]
  /external/webkit/WebCore/rendering/
RenderScrollbar.h 65 virtual void paint(GraphicsContext*, const IntRect& damageRect);
RenderLayerBacking.cpp     [all...]
RenderLayer.h 272 void paintOverflowControls(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
273 void paintScrollCorner(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
274 void paintResizer(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
372 void paint(GraphicsContext*, const IntRect& damageRect, PaintBehavior = PaintBehaviorNormal, RenderObject* paintingRoot = 0);
391 bool intersectsDamageRect(const IntRect& layerBounds, const IntRect& damageRect, const RenderLayer* rootLayer) const;
RenderTreeAsText.cpp 510 IntRect layerBounds, damageRect, clipRectToApply, outlineRect;
511 l->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, true);
517 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect, rootLayer);
521 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, LayerPaintPhaseBackground, indent, behavior);
535 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
RenderLayer.cpp     [all...]
RenderScrollbar.cpp 82 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
88 Scrollbar::paint(context, damageRect);
  /external/webkit/WebKit/chromium/src/
WebPluginContainerImpl.cpp 80 void WebPluginContainerImpl::paint(GraphicsContext* gc, const IntRect& damageRect)
89 if (!frameRect().intersects(damageRect))
109 IntRect(view->contentsToWindow(damageRect.location()), damageRect.size());
120 IntRect damageRect = convertToContainingWindow(rect);
125 damageRect.intersect(clipRect);
127 parent()->hostWindow()->repaint(damageRect, true);
  /external/webkit/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 57 HRESULT paint([in] HDC dc, [in] RECT damageRect);
  /external/webkit/WebCore/page/
FrameView.h 171 virtual void paintContents(GraphicsContext*, const IntRect& damageRect);

Completed in 825 milliseconds

1 2