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

  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMacNonOverlayAPI.h 44 virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect) OVERRIDE;
ScrollbarThemeMacNonOverlayAPI.mm 87 bool ScrollbarThemeMacNonOverlayAPI::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* context, const IntRect& damageRect)
125 bufferRect.intersect(damageRect);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarTheme.cpp 45 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
47 // Create the ScrollbarControlPartMask based on the damageRect
56 if (damageRect.intersects(backButtonStartPaintRect))
59 if (damageRect.intersects(backButtonEndPaintRect))
62 if (damageRect.intersects(forwardButtonStartPaintRect))
65 if (damageRect.intersects(forwardButtonEndPaintRect))
73 if (damageRect.intersects(trackPaintRect))
79 if (damageRect.intersects(thumbRect))
81 if (damageRect.intersects(startTrackRect))
83 if (damageRect.intersects(endTrackRect)
    [all...]
Scrollbar.cpp 170 void Scrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
177 if (context->paintingDisabled() || !frameRect().intersects(damageRect))
180 if (!theme()->paint(this, context, damageRect))
181 Widget::paint(context, damageRect);
Scrollbar.h 110 virtual void paint(GraphicsContext*, const IntRect& damageRect);
ScrollbarTheme.h 51 virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect);
ScrollView.h 272 virtual void paintContents(GraphicsContext*, const IntRect& damageRect) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbar.h 66 virtual void paint(GraphicsContext*, const IntRect& damageRect);
RenderScrollbar.cpp 112 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
118 Scrollbar::paint(context, damageRect);
RenderLayer.h 427 void paintOverflowControls(GraphicsContext*, const IntPoint&, const IntRect& damageRect, bool paintingOverlayControls = false);
428 void paintScrollCorner(GraphicsContext*, const IntPoint&, const IntRect& damageRect);
429 void paintResizer(GraphicsContext*, const IntPoint&, const IntRect& damageRect);
610 void paint(GraphicsContext*, const LayoutRect& damageRect, PaintBehavior = PaintBehaviorNormal, RenderObject* paintingRoot = 0,
614 void paintOverlayScrollbars(GraphicsContext*, const LayoutRect& damageRect, PaintBehavior, RenderObject* paintingRoot = 0);
655 bool intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot = 0) const;
    [all...]
RenderTreeAsText.cpp 663 ClipRect damageRect, clipRectToApply, outlineRect;
664 l->calculateRects(RenderLayer::ClipRectsContext(rootLayer, 0, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
669 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
673 write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
687 write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
RenderTableSection.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 103 void WebPluginContainerImpl::paint(GraphicsContext* gc, const IntRect& damageRect)
120 if (!frameRect().intersects(damageRect))
135 IntRect windowRect = view->contentsToWindow(damageRect);
377 IntRect damageRect = convertToContainingWindow(static_cast<IntRect>(rect));
381 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestProxy.cpp 641 WebRect damageRect = m_paintRect;
642 int left = max(damageRect.x, clientRect.x);
643 int top = max(damageRect.y, clientRect.y);
644 int right = min(damageRect.x + damageRect.width, clientRect.x + clientRect.width);
645 int bottom = min(damageRect.y + damageRect.height, clientRect.y + clientRect.height);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.h 223 virtual void paintContents(GraphicsContext*, const IntRect& damageRect);

Completed in 704 milliseconds