Home
last modified time | relevance | path

Searched refs:topVisibleOverflow (Results 1 – 10 of 10) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderLineBoxList.cpp165 int yPos = firstLineBox()->topVisibleOverflow() - renderer->maximalOutlineSize(paintInfo.phase); in paint()
187 … if (curr->bottomVisibleOverflow() - curr->topVisibleOverflow() <= v->printRect().height()) { in paint()
189 if (ty + curr->topVisibleOverflow() < v->truncatedAt()) in paint()
190 v->setBestTruncatedAt(ty + curr->root()->topVisibleOverflow(), renderer); in paint()
192 if (ty + curr->topVisibleOverflow() >= v->truncatedAt()) in paint()
198 …int top = min(curr->topVisibleOverflow(), curr->root()->selectionTop()) - renderer->maximalOutline… in paint()
233 …Box()->root()->bottomVisibleOverflow()) || (y < ty + firstLineBox()->root()->topVisibleOverflow())) in hitTest()
240 …if (y >= ty + curr->root()->topVisibleOverflow() && y < ty + curr->root()->bottomVisibleOverflow()… in hitTest()
DInlineFlowBox.h143 int topVisibleOverflow() const { return std::min(topLayoutOverflow(), topVisualOverflow()); } in topVisibleOverflow() function
DRenderBlockLineLayout.cpp736 repaintTop = min(repaintTop, box->topVisibleOverflow()); in layoutInlineChildren()
873 repaintTop = min(repaintTop, lineBox->topVisibleOverflow()); in layoutInlineChildren()
913 repaintTop = min(repaintTop, line->topVisibleOverflow() + min(delta, 0)); in layoutInlineChildren()
933 repaintTop = min(repaintTop, line->topVisibleOverflow()); in layoutInlineChildren()
1209 repaintTop = min(repaintTop, boxToDelete->topVisibleOverflow()); in matchedEndLine()
DRenderReplaced.cpp177 int top = currentTY + topVisibleOverflow(); in shouldPaint()
DRenderBox.h85 …int topVisibleOverflow() const { return hasOverflowClip() ? topVisualOverflow() : std::min(topLayo… in topVisibleOverflow() function
DRenderTable.cpp417 movedSectionTop = min(height(), section->y()) + section->topVisibleOverflow(); in layout()
492 …if (ty + topVisibleOverflow() >= paintInfo.rect.bottom() + os || ty + bottomVisibleOverflow() <= p… in paint()
DRenderInline.cpp565 return IntRect(leftSide, firstLineBox()->topVisibleOverflow(), rightSide - leftSide, in linesVisibleOverflowBoundingBox()
566 lastLineBox()->bottomVisibleOverflow() - firstLineBox()->topVisibleOverflow()); in linesVisibleOverflowBoundingBox()
DRenderTableCell.cpp222 top = max(top, -topVisibleOverflow()); in clippedOverflowRectForRepaint()
DRenderLayer.cpp2985 int top = firstBox->topVisibleOverflow(); in localBoundingBox()
/external/webkit/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.cpp242 int h = view->bottomVisibleOverflow() - view->topVisibleOverflow(); in updateFixedPosition()