Lines Matching defs:columnSet

56 void RenderFlowThread::removeRegionFromThread(RenderMultiColumnSet* columnSet)
58 ASSERT(columnSet);
59 m_multiColumnSetList.remove(columnSet);
106 RenderMultiColumnSet* columnSet = *iter;
107 LayoutUnit regionLogicalHeight = columnSet->pageLogicalHeight();
121 updateLogicalWidth(); // Called to get the maximum logical width for the columnSet.
141 RenderMultiColumnSet* columnSet = *iter;
142 computedValues.m_extent += columnSet->logicalHeightOfAllFlowThreadContent();
167 // Let each columnSet figure out the proper enclosing flow thread.
171 RenderMultiColumnSet* columnSet = *iter;
173 columnSet->paintInvalidationForFlowThreadContent(paintInvalidationRect);
179 RenderMultiColumnSet* columnSet = columnSetAtBlockOffset(offset);
180 if (!columnSet)
183 return columnSet->pageLogicalHeight();
188 RenderMultiColumnSet* columnSet = columnSetAtBlockOffset(offset);
189 if (!columnSet)
192 LayoutUnit pageLogicalTop = columnSet->pageLogicalTopForOffset(offset);
193 LayoutUnit pageLogicalHeight = columnSet->pageLogicalHeight();
198 // columnSet will act as being part of the previous columnSet.
225 RenderMultiColumnSet* columnSet = *iter;
227 LayoutUnit columnSetLogicalWidth = columnSet->pageLogicalWidth();
228 LayoutUnit columnSetLogicalHeight = std::min<LayoutUnit>(RenderFlowThread::maxLogicalHeight() - logicalHeight, columnSet->logicalHeightOfAllFlowThreadContent());
232 columnSet->setFlowThreadPortionRect(isHorizontalWritingMode() ? columnSetRect : columnSetRect.transposedRect());
234 m_multiColumnSetIntervalTree.add(MultiColumnSetIntervalTree::createInterval(logicalHeight, logicalHeight + columnSetLogicalHeight, columnSet));
245 RenderMultiColumnSet* columnSet = *iter;
246 columnSet->collectLayerFragments(layerFragments, layerBoundingBox, dirtyRect);
256 RenderMultiColumnSet* columnSet = *iter;
258 columnSet->collectLayerFragments(fragments, layerBoundingBox, PaintInfo::infiniteRect());