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

  /external/webkit/Source/WebCore/rendering/
InlineBox.h 45 , m_logicalWidth(0)
80 , m_logicalWidth(logicalWidth)
260 void setLogicalWidth(float w) { m_logicalWidth = w; }
261 float logicalWidth() const { return m_logicalWidth; }
266 FloatRect logicalFrameRect() const { return isHorizontal() ? IntRect(m_x, m_y, m_logicalWidth, logicalHeight()) : IntRect(m_y, m_x, m_logicalWidth, logicalHeight()); }
331 float m_logicalWidth;
EllipsisBox.cpp 67 tx += m_x + m_logicalWidth - m_markupBox->x();
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h));
110 int mtx = tx + m_logicalWidth - m_markupBox->x();
118 IntRect boundsRect = IntRect(tx, ty, m_logicalWidth, m_height);
InlineTextBox.h 126 void setExpansion(float expansion) { m_logicalWidth -= m_expansion; m_expansion = expansion; m_logicalWidth += m_expansion; }
InlineTextBox.cpp 200 if (r.x() > m_logicalWidth)
202 else if (r.maxX() > m_logicalWidth)
203 logicalWidth = m_logicalWidth - r.x();
248 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= (m_x + m_logicalWidth);
256 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < m_x + m_logicalWidth);
268 ellipsisX = ltr ? m_x + visibleBoxWidth : m_x + m_logicalWidth - visibleBoxWidth;
294 return (m_x + m_logicalWidth) - widthOfVisibleText - ellipsisWidth;
506 int widthOfHiddenText = m_logicalWidth - widthOfVisibleText;
    [all...]
InlineBox.cpp 275 IntRect boxRect(m_x, 0, m_logicalWidth, 10);
RenderTreeAsText.cpp 497 int logicalWidth = ceilf(run.m_x + run.m_logicalWidth) - x;
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 225 if (point.x() < leaf->m_x + leaf->m_logicalWidth)

Completed in 47 milliseconds