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

  /external/webkit/WebCore/rendering/
RenderOverflow.h 54 int topLayoutOverflow() const { return m_topLayoutOverflow; }
InlineFlowBox.h 143 int topVisibleOverflow() const { return std::min(topLayoutOverflow(), topVisualOverflow()); }
149 int topLayoutOverflow() const { return m_overflow ? m_overflow->topLayoutOverflow() : m_y; }
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)
204 m_overflow->setTopLayoutOverflow(topLayoutOverflow);
RenderBox.h 85 int topVisibleOverflow() const { return hasOverflowClip() ? topVisualOverflow() : std::min(topLayoutOverflow(), topVisualOverflow()); }
91 int topLayoutOverflow() const { return m_overflow? m_overflow->topLayoutOverflow() : 0; }
InlineFlowBox.cpp 538 int topLayoutOverflow = topOverflow;
581 topLayoutOverflow = min(topLayoutOverflow, flow->topLayoutOverflow());
589 int childTopOverflow = box->hasOverflowClip() ? 0 : box->topLayoutOverflow();
591 topLayoutOverflow = min(boxY + childTopOverflow, topLayoutOverflow);
598 setVerticalOverflowPositions(topLayoutOverflow, bottomLayoutOverflow, topVisualOverflow, bottomVisualOverflow, boxHeight);
    [all...]

Completed in 18 milliseconds