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

  /external/webkit/Source/WebCore/rendering/
InlineFlowBox.h 198 return m_overflow ? m_overflow->layoutOverflowRect() : enclosingIntRect(frameRectIncludingLineHeight(lineTop, lineBottom));
200 int logicalLeftLayoutOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->minXLayoutOverflow() : m_overflow->minYLayoutOverflow()) : logicalLeft(); }
201 int logicalRightLayoutOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXLayoutOverflow() : m_overflow->maxYLayoutOverflow()) : ceilf(logicalRight()); }
204 if (m_overflow)
205 return isHorizontal() ? m_overflow->minYLayoutOverflow() : m_overflow->minXLayoutOverflow()
278 OwnPtr<RenderOverflow> m_overflow; member in class:WebCore::InlineFlowBox
    [all...]
RenderBox.h 136 IntRect layoutOverflowRect() const { return m_overflow ? m_overflow->layoutOverflowRect() : clientBoxRect(); }
137 int minYLayoutOverflow() const { return m_overflow? m_overflow->minYLayoutOverflow() : borderTop(); }
138 int maxYLayoutOverflow() const { return m_overflow ? m_overflow->maxYLayoutOverflow() : borderTop() + clientHeight(); }
139 int minXLayoutOverflow() const { return m_overflow ? m_overflow->minXLayoutOverflow() : borderLeft(); }
140 int maxXLayoutOverflow() const { return m_overflow ? m_overflow->maxXLayoutOverflow() : borderLeft() + clientWidth();
487 OwnPtr<RenderOverflow> m_overflow; member in class:WebCore::RenderBox
    [all...]
RenderTableCell.h 125 bool hasVisualOverflow() const { return m_overflow && !borderBoxRect().contains(m_overflow->visualOverflowRect()); }
RenderIFrame.cpp 120 m_overflow.clear();
InlineFlowBox.cpp 246 if (m_overflow)
247 m_overflow->move(dx, dy); // FIXME: Rounding error here since overflow was pixel snapped, but nobody other than list markers passes non-integral values here.
    [all...]
RenderEmbeddedObject.cpp 223 m_overflow.clear();
RenderRubyRun.cpp 267 m_overflow.clear();
RenderBox.cpp     [all...]
RenderReplaced.cpp 89 m_overflow.clear();
RenderFlexibleBox.cpp 223 m_overflow.clear();
    [all...]
RenderTable.cpp 297 m_overflow.clear();
    [all...]
RenderTableSection.cpp 518 m_overflow.clear();
    [all...]
RenderBlock.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.cpp 149 ASSERT(!m_overflow);

Completed in 722 milliseconds