Searched refs:maxYVisualOverflow (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderOverflow.h62 int maxYVisualOverflow() const { return m_maxYVisualOverflow; } function in class:WebCore::RenderOverflow
H A DInlineFlowBox.h227 int logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXVisualOverflow() : m_overflow->maxYVisualOverflow()) : ceilf(logicalRight()); }
237 return isHorizontal() ? m_overflow->maxYVisualOverflow() : m_overflow->maxXVisualOverflow();
H A DRenderBox.h146 int maxYVisualOverflow() const { return m_overflow ? m_overflow->maxYVisualOverflow() : height(); } function in class:WebCore::RenderBox
150 int logicalRightVisualOverflow() const { return style()->isHorizontalWritingMode() ? maxXVisualOverflow() : maxYVisualOverflow(); }
H A DRenderReplaced.cpp176 int bottom = currentTY + maxYVisualOverflow();
H A DRenderTable.cpp467 repaintRectangle(IntRect(minXVisualOverflow(), movedSectionLogicalTop, maxXVisualOverflow() - minXVisualOverflow(), maxYVisualOverflow() - movedSectionLogicalTop));
469 repaintRectangle(IntRect(movedSectionLogicalTop, minYVisualOverflow(), maxXVisualOverflow() - movedSectionLogicalTop, maxYVisualOverflow() - minYVisualOverflow()));
H A DRenderTableCell.cpp288 IntRect r(-left, - top, left + max(width() + right, maxXVisualOverflow()), top + max(height() + bottom, maxYVisualOverflow()));

Completed in 50 milliseconds