OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_repaintRect
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerRepainter.h
69
LayoutRect repaintRect() const { return
m_repaintRect
; }
99
LayoutRect
m_repaintRect
; // Cached repaint rects. Used by layout.
FilterEffectRenderer.h
68
const LayoutRect& repaintRect() const { return
m_repaintRect
; }
73
LayoutRect
m_repaintRect
;
RenderLayerRepainter.cpp
71
LayoutRect oldRepaintRect =
m_repaintRect
;
81
if (
m_repaintRect
!= oldRepaintRect)
82
m_renderer->repaintUsingContainer(repaintContainer, pixelSnappedIntRect(
m_repaintRect
));
84
m_renderer->repaintAfterLayoutIfNeeded(repaintContainer, m_renderer->selfNeedsLayout(), oldRepaintRect, oldOutlineBox, &
m_repaintRect
, &m_outlineBox);
100
m_repaintRect
= IntRect();
106
m_repaintRect
= m_renderer->clippedOverflowRectForRepaint(repaintContainer);
145
LayoutRect repaintRect =
m_repaintRect
;
FilterEffectRenderer.cpp
365
m_repaintRect
= dirtyRect;
391
m_repaintRect
= filterSourceRect;
393
m_repaintRect
.unite(layerRepaintRect);
394
m_repaintRect
.intersect(filterSourceRect);
419
//
m_repaintRect
?
422
sourceGraphicsContext->clearRect(
m_repaintRect
);
423
sourceGraphicsContext->clip(
m_repaintRect
);
Completed in 57 milliseconds