OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flowThreadPortionOverflowRect
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRegion.h
57
LayoutRect
flowThreadPortionOverflowRect
() const;
160
const LayoutRect&
flowThreadPortionOverflowRect
, const LayoutPoint& regionLocation) const;
RenderMultiColumnSet.cpp
269
LayoutRect RenderMultiColumnSet::
flowThreadPortionOverflowRect
(const LayoutRect& portionRect, unsigned index, unsigned colCount, LayoutUnit colGap) const
388
clippedRect.intersect(RenderRegion::
flowThreadPortionOverflowRect
());
409
LayoutRect flowThreadOverflowPortion =
flowThreadPortionOverflowRect
(flowThreadPortion, i, colCount, colGap);
440
clippedRect.intersect(RenderRegion::
flowThreadPortionOverflowRect
());
463
LayoutRect flowThreadOverflowPortion =
flowThreadPortionOverflowRect
(flowThreadPortion, i, colCount, colGap);
RenderRegion.cpp
91
LayoutRect RenderRegion::
flowThreadPortionOverflowRect
() const
192
m_flowThread->paintFlowThreadPortionInRegion(paintInfo, this, flowThreadPortionRect(),
flowThreadPortionOverflowRect
(), LayoutPoint(paintOffset.x() + borderLeft() + paddingLeft(), paintOffset.y() + borderTop() + paddingTop()));
205
if (m_flowThread->hitTestFlowThreadPortionInRegion(this, flowThreadPortionRect(),
flowThreadPortionOverflowRect
(), request, result,
323
repaintFlowThreadContentRectangle(repaintRect, flowThreadPortionRect(),
flowThreadPortionOverflowRect
(), contentBoxRect().location());
326
void RenderRegion::repaintFlowThreadContentRectangle(const LayoutRect& repaintRect, const LayoutRect& flowThreadPortionRect, const LayoutRect&
flowThreadPortionOverflowRect
, const LayoutPoint& regionLocation) const
332
LayoutRect flippedFlowThreadPortionOverflowRect(
flowThreadPortionOverflowRect
);
RenderMultiColumnSet.h
132
LayoutRect
flowThreadPortionOverflowRect
(const LayoutRect& flowThreadPortion, unsigned index, unsigned colCount, LayoutUnit colGap) const;
RenderFlowThread.cpp
260
LayoutRect RenderFlowThread::computeRegionClippingRect(const LayoutPoint& offset, const LayoutRect& flowThreadPortionRect, const LayoutRect&
flowThreadPortionOverflowRect
) const
262
LayoutRect regionClippingRect(offset + (
flowThreadPortionOverflowRect
.location() - flowThreadPortionRect.location()),
flowThreadPortionOverflowRect
.size());
264
regionClippingRect.move(flowThreadPortionRect.size() -
flowThreadPortionOverflowRect
.size());
268
void RenderFlowThread::paintFlowThreadPortionInRegion(PaintInfo& paintInfo, RenderRegion* region, const LayoutRect& flowThreadPortionRect, const LayoutRect&
flowThreadPortionOverflowRect
, const LayoutPoint& paintOffset) const
296
IntRect regionClippingRect = pixelSnappedIntRect(computeRegionClippingRect(adjustedPaintOffset + portionLocation, flowThreadPortionRect,
flowThreadPortionOverflowRect
));
325
bool RenderFlowThread::hitTestFlowThreadPortionInRegion(RenderRegion* region, const LayoutRect& flowThreadPortionRect, const LayoutRect&
flowThreadPortionOverflowRect
, const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset) const
327
LayoutRect regionClippingRect = computeRegionClippingRect(accumulatedOffset, flowThreadPortionRect,
flowThreadPortionOverflowRect
);
[
all
...]
RenderFlowThread.h
82
void paintFlowThreadPortionInRegion(PaintInfo&, RenderRegion*, const LayoutRect& flowThreadPortionRect, const LayoutRect&
flowThreadPortionOverflowRect
, const LayoutPoint&) const;
83
bool hitTestFlowThreadPortionInRegion(RenderRegion*, const LayoutRect& flowThreadPortionRect, const LayoutRect&
flowThreadPortionOverflowRect
, const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset) const;
Completed in 610 milliseconds