OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:flowthreadportionrect
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRegion.cpp
93
return overflowRectForFlowThreadPortion(
flowThreadPortionRect
(), isFirstRegion(), isLastRegion());
96
LayoutRect RenderRegion::overflowRectForFlowThreadPortion(const LayoutRect&
flowThreadPortionRect
, bool isFirstPortion, bool isLastPortion) const
102
return
flowThreadPortionRect
;
110
LayoutUnit minY = isFirstPortion ? (flowThreadOverflow.y() - outlineSize) :
flowThreadPortionRect
.y();
111
LayoutUnit maxY = isLastPortion ? max(
flowThreadPortionRect
.maxY(), flowThreadOverflow.maxY()) + outlineSize :
flowThreadPortionRect
.maxY();
113
LayoutUnit minX = clipX ?
flowThreadPortionRect
.x() : min(
flowThreadPortionRect
.x(), flowThreadOverflow.x() - outlineSize);
114
LayoutUnit maxX = clipX ?
flowThreadPortionRect
.maxX() : max(
flowThreadPortionRect
.maxX(), (flowThreadOverflow.maxX() + outlineSize))
[
all
...]
RenderRegion.h
56
LayoutRect
flowThreadPortionRect
() const { return m_flowThreadPortionRect; }
97
LayoutUnit logicalTopForFlowThreadContent() const { return logicalTopOfFlowThreadContentRect(
flowThreadPortionRect
()); };
98
LayoutUnit logicalBottomForFlowThreadContent() const { return logicalBottomOfFlowThreadContentRect(
flowThreadPortionRect
()); };
158
LayoutRect overflowRectForFlowThreadPortion(const LayoutRect&
flowThreadPortionRect
, bool isFirstPortion, bool isLastPortion) const;
159
void repaintFlowThreadContentRectangle(const LayoutRect& repaintRect, const LayoutRect&
flowThreadPortionRect
,
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
284
LayoutRect flippedFlowThreadPortionRect(
flowThreadPortionRect
);
288
portionLocation =
flowThreadPortionRect
.location();
292
// The clipping rect for the region is set up by assuming the
flowThreadPortionRect
is going to paint offset from adjustedPaintOffset.
294
// the
flowThreadPortionRect
's location to get the spot where we expect the portion to actually paint. This can be non-integral and
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& re (…)
[
all
...]
RenderRegionSet.cpp
49
LayoutRect rect(
flowThreadPortionRect
());
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;
RenderMultiColumnSet.cpp
71
LayoutUnit portionLogicalTop = (isHorizontalWritingMode() ?
flowThreadPortionRect
().y() :
flowThreadPortionRect
().x());
216
LayoutUnit logicalHeightInColumns = flowThread()->isHorizontalWritingMode() ?
flowThreadPortionRect
().height() :
flowThreadPortionRect
().width();
241
LayoutRect portionRect(
flowThreadPortionRect
());
261
LayoutRect portionRect =
flowThreadPortionRect
();
RenderNamedFlowThread.cpp
340
LayoutUnit flowMin = height - (isHorizontalWritingMode() ? region->
flowThreadPortionRect
().y() : region->
flowThreadPortionRect
().x());
341
LayoutUnit flowMax = height - (isHorizontalWritingMode() ? region->
flowThreadPortionRect
().maxY() : region->
flowThreadPortionRect
().maxX());
Completed in 38 milliseconds