HomeSort by relevance Sort by last modified time
    Searched defs:bottomLayoutOverflow (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebCore/rendering/
RenderOverflow.h 55 int bottomLayoutOverflow() const { return m_bottomLayoutOverflow; }
InlineFlowBox.h 144 int bottomVisibleOverflow() const { return std::max(bottomLayoutOverflow(), bottomVisualOverflow()); }
150 int bottomLayoutOverflow() const { return m_overflow ? m_overflow->bottomLayoutOverflow() : 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)
205 m_overflow->setBottomLayoutOverflow(bottomLayoutOverflow);
RenderBox.h 86 int bottomVisibleOverflow() const { return hasOverflowClip() ? bottomVisualOverflow() : std::max(bottomLayoutOverflow(), bottomVisualOverflow()); }
92 int bottomLayoutOverflow() const { return m_overflow ? m_overflow->bottomLayoutOverflow() : height(); }
InlineFlowBox.cpp 537 int bottomLayoutOverflow = bottomOverflow;
580 bottomLayoutOverflow = max(bottomLayoutOverflow, flow->bottomLayoutOverflow());
588 int childBottomOverflow = box->hasOverflowClip() ? curr->height() : box->bottomLayoutOverflow();
590 bottomLayoutOverflow = max(boxY + childBottomOverflow, bottomLayoutOverflow);
596 setVerticalOverflowPositions(topLayoutOverflow, bottomLayoutOverflow, topVisualOverflow, bottomVisualOverflow, boxHeight);
    [all...]
RenderBlockLineLayout.cpp     [all...]

Completed in 1189 milliseconds