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

  /external/webkit/WebCore/rendering/
InlineFlowBox.h 144 int bottomVisibleOverflow() const { return std::max(bottomLayoutOverflow(), bottomVisualOverflow()); }
156 int bottomVisualOverflow() const { return m_overflow ? m_overflow->bottomVisualOverflow() : m_y + height(); }
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)
199 if (topLayoutOverflow == m_y && bottomLayoutOverflow == m_y + boxHeight && topVisualOverflow == m_y && bottomVisualOverflow == m_y + boxHeight)
207 m_overflow->setBottomVisualOverflow(bottomVisualOverflow);
InlineFlowBox.cpp 542 int bottomVisualOverflow = bottomOverflow;
551 bottomVisualOverflow = max(y() + boxHeight + boxShadowBottom, bottomVisualOverflow);
577 bottomVisualOverflow = max(curr->y() + text->height() + childOverflowBottom, bottomVisualOverflow);
584 bottomVisualOverflow = max(bottomVisualOverflow, flow->bottomVisualOverflow());
594 bottomVisualOverflow = max(boxY + box->bottomVisualOverflow(), bottomVisualOverflow)
    [all...]
RenderBox.h 86 int bottomVisibleOverflow() const { return hasOverflowClip() ? bottomVisualOverflow() : std::max(bottomLayoutOverflow(), bottomVisualOverflow()); }
98 int bottomVisualOverflow() const { return m_overflow ? m_overflow->bottomVisualOverflow() : height(); }
RenderOverflow.h 61 int bottomVisualOverflow() const { return m_bottomVisualOverflow; }
RootInlineBox.cpp 140 setVerticalOverflowPositions(topLayoutOverflow(), bottomLayoutOverflow(), min(topVisualOverflow(), inflatedRect.y()), max(bottomVisualOverflow(), inflatedRect.bottom()), height());
RenderBlockLineLayout.cpp     [all...]

Completed in 44 milliseconds