HomeSort by relevance Sort by last modified time
    Searched refs:maxYVisualOverflow (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderOverflow.h 62 int maxYVisualOverflow() const { return m_maxYVisualOverflow; }
InlineFlowBox.h 227 int logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXVisualOverflow() : m_overflow->maxYVisualOverflow()) : ceilf(logicalRight()); }
237 return isHorizontal() ? m_overflow->maxYVisualOverflow() : m_overflow->maxXVisualOverflow();
RenderBox.h 146 int maxYVisualOverflow() const { return m_overflow ? m_overflow->maxYVisualOverflow() : height(); }
150 int logicalRightVisualOverflow() const { return style()->isHorizontalWritingMode() ? maxXVisualOverflow() : maxYVisualOverflow(); }
RenderReplaced.cpp 176 int bottom = currentTY + maxYVisualOverflow();
RenderTable.cpp 467 repaintRectangle(IntRect(minXVisualOverflow(), movedSectionLogicalTop, maxXVisualOverflow() - minXVisualOverflow(), maxYVisualOverflow() - movedSectionLogicalTop));
469 repaintRectangle(IntRect(movedSectionLogicalTop, minYVisualOverflow(), maxXVisualOverflow() - movedSectionLogicalTop, maxYVisualOverflow() - minYVisualOverflow()));
    [all...]
RenderTableCell.cpp 288 IntRect r(-left, - top, left + max(width() + right, maxXVisualOverflow()), top + max(height() + bottom, maxYVisualOverflow()));
    [all...]

Completed in 1971 milliseconds