/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderMultiColumnSet.cpp | 38 RenderMultiColumnSet::RenderMultiColumnSet(RenderFlowThread* flowThread) in RenderMultiColumnSet() argument 39 : RenderRegion(0, flowThread) in RenderMultiColumnSet() 47 RenderMultiColumnSet* RenderMultiColumnSet::createAnonymous(RenderFlowThread* flowThread, RenderSty… in createAnonymous() argument 49 Document& document = flowThread->document(); in createAnonymous() 50 RenderMultiColumnSet* renderer = new RenderMultiColumnSet(flowThread); in createAnonymous() 282 bool isHorizontal = flowThread()->isHorizontalWritingMode(); in expandToEncompassFlowThreadContentsIfNeeded() 284 LayoutRect layoutRect = flowThread()->layoutOverflowRect(); in expandToEncompassFlowThreadContentsIfNeeded() 325 …LayoutUnit logicalHeightInColumns = flowThread()->isHorizontalWritingMode() ? flowThreadPortionRec… in actualColumnCount() 433 flowThread()->flipForWritingMode(flowThreadPaintInvalidationRect); in paintInvalidationForFlowThreadContent() 485 flowThread()->flipForWritingMode(layerBoundsInFlowThread); in collectLayerFragments() [all …]
|
D | RenderMultiColumnSet.h | 61 …virtual LayoutUnit pageLogicalWidth() const OVERRIDE FINAL { return flowThread()->logicalWidth(); } in pageLogicalWidth() 67 … ASSERT_WITH_SECURITY_IMPLICATION(!flowThread() || flowThread()->isRenderMultiColumnFlowThread()); in multiColumnFlowThread() 68 return static_cast<RenderMultiColumnFlowThread*>(flowThread()); in multiColumnFlowThread()
|
D | RenderRegion.cpp | 42 RenderRegion::RenderRegion(Element* element, RenderFlowThread* flowThread) in RenderRegion() argument 44 , m_flowThread(flowThread) in RenderRegion() 129 …flowThread()->flipForWritingMode(flippedFlowThreadPortionRect); // Put the region rects into physi… in paintInvalidationOfFlowThreadContentRectangle() 130 flowThread()->flipForWritingMode(flippedFlowThreadPortionOverflowRect); in paintInvalidationOfFlowThreadContentRectangle()
|
D | FlowThreadController.h | 46 …void setCurrentRenderFlowThread(RenderFlowThread* flowThread) { m_currentRenderFlowThread = flowTh… in setCurrentRenderFlowThread() argument
|
D | RenderBlockFlow.cpp | 189 RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread(); in layoutSpecialExcludedChild() local 190 if (!flowThread) in layoutSpecialExcludedChild() 192 setLogicalTopForChild(flowThread, borderBefore() + paddingBefore()); in layoutSpecialExcludedChild() 193 flowThread->layoutColumns(relayoutChildren, layoutScope); in layoutSpecialExcludedChild() 194 determineLogicalLeftPositionForChild(flowThread); in layoutSpecialExcludedChild() 195 return flowThread; in layoutSpecialExcludedChild() 201 if (RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread()) { in updateLogicalWidthAndColumnWidth() local 202 if (flowThread->needsNewWidth()) in updateLogicalWidthAndColumnWidth() 210 if (RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread()) { in checkForPaginationLogicalHeightChange() local 214 pageLogicalHeightChanged = columnHeight != flowThread->columnHeightAvailable(); in checkForPaginationLogicalHeightChange() [all …]
|
D | RenderRegion.h | 52 RenderFlowThread* flowThread() const { return m_flowThread; } in flowThread() function
|
D | RenderBlockLineLayout.cpp | 867 adjustLinePositionForPagination(lineBox, adjustment, layoutState.flowThread()); in layoutRunsAndFloatsInRange() 995 adjustLinePositionForPagination(line, delta, layoutState.flowThread()); in linkToEndLineIfNeeded() 1505 RenderFlowThread* flowThread = flowThreadContainingBlock(); in layoutInlineChildren() local 1506 bool clearLinesForPagination = firstLineBox() && flowThread && !flowThread->hasRegions(); in layoutInlineChildren() 1511 …layoutState(isFullLayout, paintInvalidationLogicalTop, paintInvalidationLogicalBottom, flowThread); in layoutInlineChildren() 1652 adjustLinePositionForPagination(curr, paginationDelta, layoutState.flowThread()); in determineStartPosition() 1802 if (paginated && layoutState.flowThread()) { in checkPaginationAndFloatsAtEndLine() 1811 adjustLinePositionForPagination(lineBox, lineDelta, layoutState.flowThread()); in checkPaginationAndFloatsAtEndLine()
|
D | RenderBlock.cpp | 4054 RenderFlowThread* flowThread = flowThreadContainingBlock(); in pageLogicalHeightForOffset() local 4055 if (!flowThread) in pageLogicalHeightForOffset() 4057 return flowThread->pageLogicalHeightForOffset(offset + offsetFromLogicalTopOfFirstPage()); in pageLogicalHeightForOffset() 4065 RenderFlowThread* flowThread = flowThreadContainingBlock(); in pageRemainingLogicalHeightForOffset() local 4066 if (!flowThread) { in pageRemainingLogicalHeightForOffset() 4077 return flowThread->pageRemainingLogicalHeightForOffset(offset, pageBoundaryRule); in pageRemainingLogicalHeightForOffset() 4082 if (RenderFlowThread* flowThread = flowThreadContainingBlock()) in setPageBreak() local 4083 flowThread->setPageBreak(offsetFromLogicalTopOfFirstPage() + offset, spaceShortage); in setPageBreak() 4088 if (RenderFlowThread* flowThread = flowThreadContainingBlock()) in updateMinimumPageHeight() local 4089 flowThread->updateMinimumPageHeight(offsetFromLogicalTopOfFirstPage() + offset, minHeight); in updateMinimumPageHeight() [all …]
|
D | RenderObject.cpp | 640 RenderFlowThread* flowThread = view()->flowThreadController()->currentRenderFlowThread(); in locateFlowThreadContainingBlock() local 641 if (flowThread) in locateFlowThreadContainingBlock() 642 return flowThread; in locateFlowThreadContainingBlock()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | LineLayoutState.h | 36 …ntInvalidationLogicalTop, LayoutUnit& paintInvalidationLogicalBottom, RenderFlowThread* flowThread) in LineLayoutState() argument 49 , m_flowThread(flowThread) in LineLayoutState() 99 RenderFlowThread* flowThread() const { return m_flowThread; } in flowThread() function
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | MultiColumnSetPainter.cpp | 28 …if (!m_renderMultiColumnSet.flowThread() || !m_renderMultiColumnSet.isValid() || (paintInfo.phase … in paintObject() 36 if (m_renderMultiColumnSet.flowThread()->isRenderPagedFlowThread()) in paintColumnRules()
|