Home
last modified time | relevance | path

Searched refs:colRect (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/paint/
DBlockPainter.cpp358 LayoutRect colRect = m_renderBlock.columnRectAt(colInfo, i); in paintColumnContents() local
359 m_renderBlock.flipForWritingMode(colRect); in paintColumnContents()
360 …it logicalLeftOffset = (m_renderBlock.isHorizontalWritingMode() ? colRect.x() : colRect.y()) - m_r… in paintColumnContents()
364 … offset.expand(0, colRect.y() - m_renderBlock.borderTop() - m_renderBlock.paddingTop()); in paintColumnContents()
366 … offset.expand(colRect.x() - m_renderBlock.borderLeft() - m_renderBlock.paddingLeft(), 0); in paintColumnContents()
368 colRect.moveBy(paintOffset); in paintColumnContents()
370 info.rect.intersect(enclosingIntRect(colRect)); in paintColumnContents()
374 LayoutRect clipRect(colRect); in paintColumnContents()
396 …utUnit blockDelta = (m_renderBlock.isHorizontalWritingMode() ? colRect.height() : colRect.width()); in paintColumnContents()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlock.cpp2530 LayoutRect colRect = it.columnRect(); in hitTestColumns() local
2531 colRect.moveBy(accumulatedOffset); in hitTestColumns()
2532 if (locationInContainer.intersects(colRect)) { in hitTestColumns()
2538 if (!result.isRectBasedTest() || colRect.contains(hitRect)) in hitTestColumns()
2551 LayoutRect colRect = it.columnRect(); in adjustForColumnRect() local
2552 if (colRect.contains(locationInContainer)) { in adjustForColumnRect()
2951 LayoutRect colRect = columnRectAt(colInfo, i); in adjustPointToColumnContents() local
2952 flipForWritingMode(colRect); in adjustPointToColumnContents()
2954 …LayoutRect gapAndColumnRect(colRect.x() - halfColGap, colRect.y(), colRect.width() + colGap, colRe… in adjustPointToColumnContents()
2969 if (point.x() < colRect.x()) in adjustPointToColumnContents()
[all …]
DRenderLayer.cpp2317 LayoutRect colRect = columnBlock->columnRectAt(colInfo, i); in paintChildLayerIntoColumns() local
2318 columnBlock->flipForWritingMode(colRect); in paintChildLayerIntoColumns()
2319 …LayoutUnit logicalLeftOffset = (isHorizontal ? colRect.x() : colRect.y()) - columnBlock->logicalLe… in paintChildLayerIntoColumns()
2325 …offset = LayoutSize(0, colRect.y() + currLogicalTopOffset - columnBlock->borderTop() - columnBlock… in paintChildLayerIntoColumns()
2330 …offset = LayoutSize(colRect.x() + currLogicalTopOffset - columnBlock->borderLeft() - columnBlock->… in paintChildLayerIntoColumns()
2333 colRect.moveBy(layerOffset); in paintChildLayerIntoColumns()
2336 localDirtyRect.intersect(colRect); in paintChildLayerIntoColumns()
2343 context->clip(enclosingIntRect(colRect)); in paintChildLayerIntoColumns()
2384 LayoutUnit blockDelta = isHorizontal ? colRect.height() : colRect.width(); in paintChildLayerIntoColumns()
2883 LayoutRect colRect = columnBlock->columnRectAt(colInfo, i); in hitTestChildLayerColumns() local
[all …]
DRenderMultiColumnSet.cpp453 LayoutRect colRect = columnRectAt(i); in paintInvalidationForFlowThreadContent() local
462 …Rectangle(paintInvalidationRect, flowThreadPortion, flowThreadOverflowPortion, colRect.location()); in paintInvalidationForFlowThreadContent()