OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:damageRect
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTreeAsText.cpp
669
ClipRect
damageRect
, clipRectToApply, outlineRect;
670
layer->calculateRects(ClipRectsContext(rootLayer, 0, TemporaryClipRects), paintDirtyRect, layerBounds,
damageRect
, clipRectToApply, outlineRect);
675
bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds,
damageRect
.rect(), rootLayer);
680
write(ts, *layer, layerBounds,
damageRect
.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
694
write(ts, *layer, layerBounds,
damageRect
.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp
104
void WebPluginContainerImpl::paint(GraphicsContext* gc, const IntRect&
damageRect
)
121
if (!frameRect().intersects(
damageRect
))
136
IntRect windowRect = view->contentsToWindow(
damageRect
);
385
IntRect
damageRect
= convertToContainingWindow(static_cast<IntRect>(rect));
389
parent()->hostWindow()->scroll(scrollDelta,
damageRect
,
damageRect
);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestProxy.cpp
604
WebRect
damageRect
= m_paintRect;
605
int left = max(
damageRect
.x, clientRect.x);
606
int top = max(
damageRect
.y, clientRect.y);
607
int right = min(
damageRect
.x +
damageRect
.width, clientRect.x + clientRect.width);
608
int bottom = min(
damageRect
.y +
damageRect
.height, clientRect.y + clientRect.height);
[
all
...]
Completed in 419 milliseconds