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

  /external/webkit/WebCore/rendering/
InlineFlowBox.h 146 int rightVisibleOverflow() const { return std::max(rightLayoutOverflow(), rightVisualOverflow()); }
152 int rightLayoutOverflow() const { return m_overflow ? m_overflow->rightLayoutOverflow() : m_x + m_width; }
161 void setHorizontalOverflowPositions(int leftLayoutOverflow, int rightLayoutOverflow, int leftVisualOverflow, int rightVisualOverflow);
182 inline void InlineFlowBox::setHorizontalOverflowPositions(int leftLayoutOverflow, int rightLayoutOverflow, int leftVisualOverflow, int rightVisualOverflow)
185 if (leftLayoutOverflow == m_x && rightLayoutOverflow == m_x + m_width && leftVisualOverflow == m_x && rightVisualOverflow == m_x + m_width)
191 m_overflow->setRightLayoutOverflow(rightLayoutOverflow);
InlineFlowBox.cpp 258 int rightLayoutOverflow = xPos;
287 rightLayoutOverflow = max(xPos + text->width() - letterSpacing, rightLayoutOverflow);
320 rightLayoutOverflow = max(rightLayoutOverflow, flow->rightLayoutOverflow());
329 int childRightOverflow = box->hasOverflowClip() ? curr->width() : box->rightLayoutOverflow();
332 rightLayoutOverflow = max(xPos + childRightOverflow, rightLayoutOverflow);
345 rightLayoutOverflow = max(x() + width(), rightLayoutOverflow)
    [all...]
RenderOverflow.h 57 int rightLayoutOverflow() const { return m_rightLayoutOverflow; }
RenderBox.h 88 int rightVisibleOverflow() const { return hasOverflowClip() ? rightVisualOverflow() : std::max(rightLayoutOverflow(), rightVisualOverflow()); }
94 int rightLayoutOverflow() const { return m_overflow ? m_overflow->rightLayoutOverflow() : width(); }
RenderListItem.cpp 278 box->setHorizontalOverflowPositions(markerXPos, box->rightLayoutOverflow(), box->leftVisualOverflow(), box->rightVisualOverflow());
288 if (markerXPos + m_marker->width() > box->rightLayoutOverflow()) {
RootInlineBox.cpp 139 setHorizontalOverflowPositions(leftLayoutOverflow(), rightLayoutOverflow(), min(leftVisualOverflow(), inflatedRect.x()), max(rightVisualOverflow(), inflatedRect.right()));
RenderLayerCompositor.cpp     [all...]
RenderLayer.cpp 598 if (box->rightLayoutOverflow() > box->width())
599 setWidth(box->rightLayoutOverflow());
    [all...]
RenderBlock.cpp     [all...]
  /external/webkit/WebCore/page/
PrintContext.cpp 70 float pageWidth = (float)root->rightLayoutOverflow();
FrameView.cpp 401 setContentsSize(IntSize(root->rightLayoutOverflow(), root->bottomLayoutOverflow()));
    [all...]

Completed in 362 milliseconds