Searched refs:damageRect (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbarThemeMacNonOverlayAPI.h44 virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect) OVERRIDE;
H A DScrollbarTheme.cpp50 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect) argument
52 // Create the ScrollbarControlPartMask based on the damageRect
61 if (damageRect.intersects(backButtonStartPaintRect))
64 if (damageRect.intersects(backButtonEndPaintRect))
67 if (damageRect.intersects(forwardButtonStartPaintRect))
70 if (damageRect.intersects(forwardButtonEndPaintRect))
78 if (damageRect.intersects(trackPaintRect))
84 if (damageRect.intersects(thumbRect))
86 if (damageRect.intersects(startTrackRect))
88 if (damageRect
[all...]
H A DScrollbar.cpp177 void Scrollbar::paint(GraphicsContext* context, const IntRect& damageRect) argument
179 if (!frameRect().intersects(damageRect))
182 if (!theme()->paint(this, context, damageRect))
183 Widget::paint(context, damageRect);
H A DScrollbarTheme.h47 virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect);
H A DScrollbar.h114 virtual void paint(GraphicsContext*, const IntRect& damageRect) OVERRIDE;
H A DScrollbarThemeMacNonOverlayAPI.mm78 bool ScrollbarThemeMacNonOverlayAPI::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* context, const IntRect& damageRect)
117 bufferRect.intersect(damageRect);
H A DScrollView.h256 virtual void paintContents(GraphicsContext*, const IntRect& damageRect) = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.h154 void paintResizer(GraphicsContext*, const IntPoint& paintOffset, const IntRect& damageRect);
155 void paintOverflowControls(GraphicsContext*, const IntPoint& paintOffset, const IntRect& damageRect, bool paintingOverlayControls);
156 void paintScrollCorner(GraphicsContext*, const IntPoint&, const IntRect& damageRect);
H A DRenderLayerScrollableArea.cpp1003 void RenderLayerScrollableArea::paintOverflowControls(GraphicsContext* context, const IntPoint& paintOffset, const IntRect& damageRect, bool paintingOverlayControls) argument
1029 IntRect localDamgeRect = damageRect;
1050 m_hBar->paint(context, damageRect);
1052 m_vBar->paint(context, damageRect);
1059 paintScrollCorner(context, adjustedPaintOffset, damageRect);
1062 paintResizer(context, adjustedPaintOffset, damageRect);
1065 void RenderLayerScrollableArea::paintScrollCorner(GraphicsContext* context, const IntPoint& paintOffset, const IntRect& damageRect) argument
1069 if (!absRect.intersects(damageRect))
1170 void RenderLayerScrollableArea::paintResizer(GraphicsContext* context, const IntPoint& paintOffset, const IntRect& damageRect) argument
1177 if (!absRect.intersects(damageRect))
[all...]
H A DRenderTreeAsText.cpp588 ClipRect damageRect, clipRectToApply, outlineRect; local
589 layer->clipper().calculateRects(ClipRectsContext(rootLayer, UncachedClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect); local
598 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
603 write(ts, *layer, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
617 write(ts, *layer, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
H A DRenderLayer.h229 // paint() assumes that the caller will clip to the bounds of damageRect if necessary.
230 void paint(GraphicsContext*, const LayoutRect& damageRect, PaintBehavior = PaintBehaviorNormal, RenderObject* paintingRoot = 0, PaintLayerFlags = 0);
233 void paintOverlayScrollbars(GraphicsContext*, const LayoutRect& damageRect, PaintBehavior, RenderObject* paintingRoot = 0);
236 bool intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot = 0) const;
H A DRenderTableSection.cpp1283 CellSpan RenderTableSection::dirtiedRows(const LayoutRect& damageRect) const
1288 CellSpan coveredRows = spannedRows(damageRect);
1291 if (coveredRows.start() >= m_rowPos.size() - 1 && m_rowPos[m_rowPos.size() - 1] + table()->outerBorderAfter() >= damageRect.y())
1294 if (!coveredRows.end() && m_rowPos[0] - table()->outerBorderBefore() <= damageRect.maxY())
1300 CellSpan RenderTableSection::dirtiedColumns(const LayoutRect& damageRect) const
1305 CellSpan coveredColumns = spannedColumns(damageRect);
1309 if (coveredColumns.start() >= columnPos.size() - 1 && columnPos[columnPos.size() - 1] + table()->outerBorderEnd() >= damageRect.x())
1312 if (!coveredColumns.end() && columnPos[0] - table()->outerBorderStart() <= damageRect.maxX())
H A DRenderLayer.cpp1502 void RenderLayer::paint(GraphicsContext* context, const LayoutRect& damageRect, PaintBehavior paintBehavior, RenderObject* paintingRoot, PaintLayerFlags paintFlags) argument
1504 LayerPaintingInfo paintingInfo(this, enclosingIntRect(damageRect), paintBehavior, LayoutSize(), paintingRoot);
1509 void RenderLayer::paintOverlayScrollbars(GraphicsContext* context, const LayoutRect& damageRect, PaintBehavior paintBehavior, RenderObject* paintingRoot) argument
1514 LayerPaintingInfo paintingInfo(this, enclosingIntRect(damageRect), paintBehavior, LayoutSize(), paintingRoot);
1816 // FIXME: It is incorrect to just clip to the damageRect here once multiple fragments are involved.
1895 // FIXME: It is incorrect to just clip to the damageRect here once multiple fragments are involved.
3027 bool RenderLayer::intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot) const argument
3040 if (layerBounds.intersects(damageRect))
3046 return physicalBoundingBox(rootLayer, offsetFromRoot).intersects(damageRect);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginContainerImpl.cpp107 void WebPluginContainerImpl::paint(GraphicsContext* gc, const IntRect& damageRect) argument
113 if (!frameRect().intersects(damageRect))
128 IntRect windowRect = view->contentsToWindow(damageRect);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.h205 virtual void paintContents(GraphicsContext*, const IntRect& damageRect) OVERRIDE;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 627 milliseconds