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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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);
  /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...]

Completed in 74 milliseconds