Searched refs:topVisualOverflow (Results 1 - 5 of 5) sorted by relevance

/external/webkit/WebCore/rendering/
H A DInlineFlowBox.h143 int topVisibleOverflow() const { return std::min(topLayoutOverflow(), topVisualOverflow()); }
155 int topVisualOverflow() const { return m_overflow ? m_overflow->topVisualOverflow() : m_y; } function in class:WebCore::InlineFlowBox
162 void setVerticalOverflowPositions(int topLayoutOverflow, int bottomLayoutOverflow, int topVisualOverflow, int bottomVisualOverflow, int boxHeight);
196 inline void InlineFlowBox::setVerticalOverflowPositions(int topLayoutOverflow, int bottomLayoutOverflow, int topVisualOverflow, int bottomVisualOverflow, int boxHeight) argument
199 if (topLayoutOverflow == m_y && bottomLayoutOverflow == m_y + boxHeight && topVisualOverflow == m_y && bottomVisualOverflow == m_y + boxHeight)
206 m_overflow->setTopVisualOverflow(topVisualOverflow);
H A DInlineFlowBox.cpp541 int topVisualOverflow = topOverflow; local
550 topVisualOverflow = min(y() + boxShadowTop, topVisualOverflow);
576 topVisualOverflow = min(curr->y() + childOverflowTop, topVisualOverflow);
583 topVisualOverflow = min(topVisualOverflow, flow->topVisualOverflow());
593 topVisualOverflow = min(boxY + box->topVisualOverflow(), topVisualOverflo
[all...]
H A DRenderBox.h85 int topVisibleOverflow() const { return hasOverflowClip() ? topVisualOverflow() : std::min(topLayoutOverflow(), topVisualOverflow()); }
97 int topVisualOverflow() const { return m_overflow? m_overflow->topVisualOverflow() : 0; } function in class:WebCore::RenderBox
H A DRenderOverflow.h60 int topVisualOverflow() const { return m_topVisualOverflow; } function in class:WebCore::RenderOverflow
H A DRootInlineBox.cpp140 setVerticalOverflowPositions(topLayoutOverflow(), bottomLayoutOverflow(), min(topVisualOverflow(), inflatedRect.y()), max(bottomVisualOverflow(), inflatedRect.bottom()), height());

Completed in 19 milliseconds