Searched refs:flowThread (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFlowThreadController.h46 void setCurrentRenderFlowThread(RenderFlowThread* flowThread) { m_currentRenderFlowThread = flowThread; } argument
H A DRenderRegion.cpp44 RenderRegion::RenderRegion(Element* element, RenderFlowThread* flowThread) argument
46 , m_flowThread(flowThread)
104 return flowThread()->isHorizontalWritingMode() ? flowThreadPortionRect().y() : flowThreadPortionRect().x();
147 flowThread()->flipForWritingMode(flippedFlowThreadPortionRect); // Put the region rects into physical coordinates.
148 flowThread()->flipForWritingMode(flippedFlowThreadPortionOverflowRect);
191 return flowThread()->isHorizontalWritingMode() ? rect.y() : rect.x();
197 return flowThread()->isHorizontalWritingMode() ? rect.maxY() : rect.maxX();
H A DRenderMultiColumnSet.h61 virtual LayoutUnit pageLogicalWidth() const OVERRIDE FINAL { return flowThread()->logicalWidth(); }
67 ASSERT_WITH_SECURITY_IMPLICATION(!flowThread() || flowThread()->isRenderMultiColumnFlowThread());
68 return static_cast<RenderMultiColumnFlowThread*>(flowThread());
H A DRenderMultiColumnSet.cpp37 RenderMultiColumnSet::RenderMultiColumnSet(RenderFlowThread* flowThread) argument
38 : RenderRegion(0, flowThread)
46 RenderMultiColumnSet* RenderMultiColumnSet::createAnonymous(RenderFlowThread* flowThread, RenderStyle* parentStyle) argument
48 Document& document = flowThread->document();
49 RenderMultiColumnSet* renderer = new RenderMultiColumnSet(flowThread);
281 bool isHorizontal = flowThread()->isHorizontalWritingMode();
283 LayoutRect layoutRect = flowThread()->layoutOverflowRect();
324 LayoutUnit logicalHeightInColumns = flowThread()->isHorizontalWritingMode() ? flowThreadPortionRect().height() : flowThreadPortionRect().width();
494 flowThread()->flipForWritingMode(flowThreadRepaintRect);
546 flowThread()
[all...]
H A DRenderRegion.h55 RenderFlowThread* flowThread() const { return m_flowThread; } function in class:WebCore::RenderRegion
H A DRenderBlockFlow.cpp175 RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread(); local
176 if (!flowThread)
178 setLogicalTopForChild(flowThread, borderBefore() + paddingBefore());
179 flowThread->layoutColumns(relayoutChildren, layoutScope);
180 determineLogicalLeftPositionForChild(flowThread);
181 return flowThread;
187 if (RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread()) {
188 if (flowThread->needsNewWidth())
196 if (RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread()) {
200 pageLogicalHeightChanged = columnHeight != flowThread
226 RenderFlowThread* flowThread = toRenderFlowThread(this); local
1600 RenderFlowThread* flowThread = flowThreadContainingBlock(); local
1624 RenderFlowThread* flowThread = flowThreadContainingBlock(); local
2790 RenderMultiColumnFlowThread* flowThread = RenderMultiColumnFlowThread::createAnonymous(document(), style()); local
[all...]
H A DRenderBlock.cpp1385 void RenderBlock::computeRegionRangeForBlock(RenderFlowThread* flowThread) argument
1387 if (flowThread)
1388 flowThread->setRegionRangeForBox(this, offsetFromLogicalTopOfFirstPage());
4598 RenderFlowThread* flowThread = flowThreadContainingBlock(); local
4599 if (!flowThread) {
4605 return flowThread->pageLogicalTopForOffset(cumulativeOffset);
4611 RenderFlowThread* flowThread = flowThreadContainingBlock(); local
4612 if (!flowThread)
4614 return flowThread->pageLogicalHeightForOffset(offset + offsetFromLogicalTopOfFirstPage());
4622 RenderFlowThread* flowThread local
4688 adjustLinePositionForPagination(RootInlineBox* lineBox, LayoutUnit& delta, RenderFlowThread* flowThread) argument
[all...]
H A DRenderBlockLineLayout.cpp1020 adjustLinePositionForPagination(lineBox, adjustment, layoutState.flowThread());
1148 adjustLinePositionForPagination(line, delta, layoutState.flowThread());
1657 RenderFlowThread* flowThread = flowThreadContainingBlock(); local
1658 bool clearLinesForPagination = firstLineBox() && flowThread && !flowThread->hasRegions();
1663 LineLayoutState layoutState(isFullLayout, repaintLogicalTop, repaintLogicalBottom, flowThread);
1796 adjustLinePositionForPagination(curr, paginationDelta, layoutState.flowThread());
1947 if (paginated && layoutState.flowThread()) {
1956 adjustLinePositionForPagination(lineBox, lineDelta, layoutState.flowThread());
H A DRenderObject.cpp604 RenderFlowThread* flowThread = view()->flowThreadController()->currentRenderFlowThread(); local
605 if (flowThread)
606 return flowThread;
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineLayoutState.h36 LineLayoutState(bool fullLayout, LayoutUnit& repaintLogicalTop, LayoutUnit& repaintLogicalBottom, RenderFlowThread* flowThread) argument
49 , m_flowThread(flowThread)
99 RenderFlowThread* flowThread() const { return m_flowThread; } function in class:WebCore::LineLayoutState

Completed in 232 milliseconds