HomeSort by relevance Sort by last modified time
    Searched refs:flowThread (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FlowThreadController.h 46 void setCurrentRenderFlowThread(RenderFlowThread* flowThread) { m_currentRenderFlowThread = flowThread; }
RenderMultiColumnSet.h 61 virtual LayoutUnit pageLogicalWidth() const OVERRIDE FINAL { return flowThread()->logicalWidth(); }
67 ASSERT_WITH_SECURITY_IMPLICATION(!flowThread() || flowThread()->isRenderMultiColumnFlowThread());
68 return static_cast<RenderMultiColumnFlowThread*>(flowThread());
RenderRegion.cpp 42 RenderRegion::RenderRegion(Element* element, RenderFlowThread* flowThread)
44 , m_flowThread(flowThread)
129 flowThread()->flipForWritingMode(flippedFlowThreadPortionRect); // Put the region rects into physical coordinates.
130 flowThread()->flipForWritingMode(flippedFlowThreadPortionOverflowRect);
RenderMultiColumnSet.cpp 38 RenderMultiColumnSet::RenderMultiColumnSet(RenderFlowThread* flowThread)
39 : RenderRegion(0, flowThread)
47 RenderMultiColumnSet* RenderMultiColumnSet::createAnonymous(RenderFlowThread* flowThread, RenderStyle* parentStyle)
49 Document& document = flowThread->document();
50 RenderMultiColumnSet* renderer = new RenderMultiColumnSet(flowThread);
282 bool isHorizontal = flowThread()->isHorizontalWritingMode();
284 LayoutRect layoutRect = flowThread()->layoutOverflowRect();
325 LayoutUnit logicalHeightInColumns = flowThread()->isHorizontalWritingMode() ? flowThreadPortionRect().height() : flowThreadPortionRect().width();
433 flowThread()->flipForWritingMode(flowThreadPaintInvalidationRect);
485 flowThread()->flipForWritingMode(layerBoundsInFlowThread)
    [all...]
RenderRegion.h 52 RenderFlowThread* flowThread() const { return m_flowThread; }
RenderBlockFlow.cpp 189 RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread();
190 if (!flowThread)
192 setLogicalTopForChild(flowThread, borderBefore() + paddingBefore());
193 flowThread->layoutColumns(relayoutChildren, layoutScope);
194 determineLogicalLeftPositionForChild(flowThread);
195 return flowThread;
201 if (RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread()) {
202 if (flowThread->needsNewWidth())
210 if (RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread()) {
214 pageLogicalHeightChanged = columnHeight != flowThread->columnHeightAvailable()
    [all...]
RenderBlockLineLayout.cpp     [all...]
RenderBlock.cpp     [all...]
RenderObject.cpp 640 RenderFlowThread* flowThread = view()->flowThreadController()->currentRenderFlowThread();
641 if (flowThread)
642 return flowThread;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
LineLayoutState.h 36 LineLayoutState(bool fullLayout, LayoutUnit& paintInvalidationLogicalTop, LayoutUnit& paintInvalidationLogicalBottom, RenderFlowThread* flowThread)
49 , m_flowThread(flowThread)
99 RenderFlowThread* flowThread() const { return m_flowThread; }
  /external/chromium_org/third_party/WebKit/Source/core/paint/
MultiColumnSetPainter.cpp 28 if (!m_renderMultiColumnSet.flowThread() || !m_renderMultiColumnSet.isValid() || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
36 if (m_renderMultiColumnSet.flowThread()->isRenderPagedFlowThread())

Completed in 166 milliseconds