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

  /external/webkit/WebCore/rendering/
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);
RenderOverflow.h 55 int bottomLayoutOverflow() const { return m_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...]
RootInlineBox.cpp 140 setVerticalOverflowPositions(topLayoutOverflow(), bottomLayoutOverflow(), min(topVisualOverflow(), inflatedRect.y()), max(bottomVisualOverflow(), inflatedRect.bottom()), height());
RenderLayerCompositor.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderLayer.cpp 600 if (box->bottomLayoutOverflow() > box->height())
601 setHeight(box->bottomLayoutOverflow());
    [all...]
RenderBlock.cpp     [all...]
  /external/webkit/WebCore/page/
FrameView.cpp 401 setContentsSize(IntSize(root->rightLayoutOverflow(), root->bottomLayoutOverflow()));
    [all...]

Completed in 781 milliseconds