Searched refs:topVisibleOverflow (Results 1 – 10 of 10) sorted by relevance
/external/webkit/WebCore/rendering/ |
D | RenderLineBoxList.cpp | 165 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()
|
D | InlineFlowBox.h | 143 int topVisibleOverflow() const { return std::min(topLayoutOverflow(), topVisualOverflow()); } in topVisibleOverflow() function
|
D | RenderBlockLineLayout.cpp | 736 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()
|
D | RenderReplaced.cpp | 177 int top = currentTY + topVisibleOverflow(); in shouldPaint()
|
D | RenderBox.h | 85 …int topVisibleOverflow() const { return hasOverflowClip() ? topVisualOverflow() : std::min(topLayo… in topVisibleOverflow() function
|
D | RenderTable.cpp | 417 movedSectionTop = min(height(), section->y()) + section->topVisibleOverflow(); in layout() 492 …if (ty + topVisibleOverflow() >= paintInfo.rect.bottom() + os || ty + bottomVisibleOverflow() <= p… in paint()
|
D | RenderInline.cpp | 565 return IntRect(leftSide, firstLineBox()->topVisibleOverflow(), rightSide - leftSide, in linesVisibleOverflowBoundingBox() 566 lastLineBox()->bottomVisibleOverflow() - firstLineBox()->topVisibleOverflow()); in linesVisibleOverflowBoundingBox()
|
D | RenderTableCell.cpp | 222 top = max(top, -topVisibleOverflow()); in clippedOverflowRectForRepaint()
|
D | RenderLayer.cpp | 2985 int top = firstBox->topVisibleOverflow(); in localBoundingBox()
|
/external/webkit/WebCore/platform/graphics/android/ |
D | GraphicsLayerAndroid.cpp | 242 int h = view->bottomVisibleOverflow() - view->topVisibleOverflow(); in updateFixedPosition()
|