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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FlowThreadController.h 46 void setCurrentRenderFlowThread(RenderFlowThread* flowThread) { m_currentRenderFlowThread = flowThread; }
RenderRegion.cpp 44 RenderRegion::RenderRegion(Element* element, RenderFlowThread* flowThread)
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();
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());
RenderMultiColumnSet.cpp 37 RenderMultiColumnSet::RenderMultiColumnSet(RenderFlowThread* flowThread)
38 : RenderRegion(0, flowThread)
46 RenderMultiColumnSet* RenderMultiColumnSet::createAnonymous(RenderFlowThread* flowThread, RenderStyle* parentStyle)
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()->flipForWritingMode(layerBoundsInFlowThread)
    [all...]
RenderRegion.h 55 RenderFlowThread* flowThread() const { return m_flowThread; }
RenderBlockFlow.cpp 175 RenderMultiColumnFlowThread* flowThread = multiColumnFlowThread();
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->columnHeightAvailable()
    [all...]
RenderBlock.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderObject.cpp 604 RenderFlowThread* flowThread = view()->flowThreadController()->currentRenderFlowThread();
605 if (flowThread)
606 return flowThread;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
LineLayoutState.h 36 LineLayoutState(bool fullLayout, LayoutUnit& repaintLogicalTop, LayoutUnit& repaintLogicalBottom, RenderFlowThread* flowThread)
49 , m_flowThread(flowThread)
99 RenderFlowThread* flowThread() const { return m_flowThread; }

Completed in 769 milliseconds