HomeSort by relevance Sort by last modified time
    Searched refs:m_width (Results 26 - 50 of 60) sorted by null

12 3

  /external/webkit/WebCore/rendering/
InlineFlowBox.h 147 IntRect visibleOverflowRect() const { return m_overflow ? m_overflow->visibleOverflowRect() : IntRect(m_x, m_y, m_width, height()); }
152 int rightLayoutOverflow() const { return m_overflow ? m_overflow->rightLayoutOverflow() : m_x + m_width; }
153 IntRect layoutOverflowRect() const { return m_overflow ? m_overflow->layoutOverflowRect() : IntRect(m_x, m_y, m_width, height()); }
158 int rightVisualOverflow() const { return m_overflow ? m_overflow->rightVisualOverflow() : m_x + m_width; }
159 IntRect visualOverflowRect() const { return m_overflow ? m_overflow->visualOverflowRect() : IntRect(m_x, m_y, m_width, height()); }
185 if (leftLayoutOverflow == m_x && rightLayoutOverflow == m_x + m_width && leftVisualOverflow == m_x && rightVisualOverflow == m_x + m_width)
187 m_overflow.set(new RenderOverflow(IntRect(m_x, m_y, m_width, m_renderer->style(m_firstLine)->font().height())));
201 m_overflow.set(new RenderOverflow(IntRect(m_x, m_y, m_width, boxHeight)));
EllipsisBox.cpp 65 tx += m_x + m_width - m_markupBox->x();
94 context->clip(IntRect(m_x + tx, y + ty, m_width, h));
108 int mtx = tx + m_width - m_markupBox->x();
116 if (visibleToHitTesting() && IntRect(tx, ty, m_width, m_height).contains(x, y)) {
InlineBox.h 45 , m_width(0)
78 , m_width(width)
195 void setWidth(int w) { m_width = w; }
196 int width() const { return m_width; }
259 int m_width; member in class:WebCore::InlineBox
InlineTextBox.h 98 void setSpaceAdd(int add) { m_width -= m_toAdd; m_toAdd = add; m_width += m_toAdd; }
InlineTextBox.cpp 121 if (r.x() > tx + m_x + m_width)
123 else if (r.right() - 1 > tx + m_x + m_width)
124 r.setWidth(tx + m_x + m_width - r.x());
164 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= (m_x + m_width);
172 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < m_x + m_width);
184 ellipsisX = ltr ? m_x + visibleBoxWidth : m_x + m_width - visibleBoxWidth;
210 return (m_x + m_width) - widthOfVisibleText - ellipsisWidth;
268 IntRect rect(tx + m_x, ty + m_y, m_width, height());
364 int widthOfHiddenText = m_width - widthOfVisibleText;
597 context->clip(IntRect(m_x + tx, y + ty, m_width, h))
    [all...]
RenderLayer.h 228 int width() const { return m_width; }
230 void setWidth(int w) { m_width = w; }
586 int m_width; member in class:WebCore::RenderLayer
RootInlineBox.cpp 377 if (x >= lastLeaf->m_x + lastLeaf->m_width && !lastLeaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(lastLeaf)))
386 if (x < leaf->m_x + leaf->m_width)
InlineBox.cpp 271 IntRect boxRect(m_x, 0, m_width, 10);
RenderBlock.h 404 , m_width(0)
417 int m_width; member in struct:WebCore::RenderBlock::FloatingObject
  /external/webkit/WebCore/rendering/style/
StyleMultiColData.h 56 float m_width; member in class:WebCore::StyleMultiColData
  /external/webkit/WebKit/android/
RenderSkinAndroid.cpp 43 , m_width(0)
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.cpp 116 int m_width; member in class:QTMovieWinPrivate
150 , m_width(0)
349 if (!m_height || !m_width)
356 else if (m_gWorld && (m_width > m_gWorldWidth || m_height > m_gWorldHeight)) {
369 m_gWorldWidth = max(cGWorldMinWidth, m_width);
383 bounds.right = m_width;
411 if (m_width == width && m_height == height)
413 m_width = width;
437 bounds.right = m_width;
636 width = m_private->m_width;
    [all...]
  /external/webkit/WebCore/svg/
SVGFilterPrimitiveStandardAttributes.cpp 40 , m_width(LengthModeWidth, "100%")
SVGForeignObjectElement.cpp 44 , m_width(LengthModeWidth)
SVGImageElement.cpp 46 , m_width(LengthModeWidth)
SVGRectElement.cpp 40 , m_width(LengthModeWidth)
SVGFilterElement.cpp 54 , m_width(LengthModeWidth, "120%")
SVGMaskElement.cpp 60 , m_width(LengthModeWidth, "120%")
SVGPatternElement.cpp 60 , m_width(LengthModeWidth)
SVGSVGElement.cpp 68 , m_width(LengthModeWidth, "100%")
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
h264_utils.h 199 unsigned m_width; member in class:H264_Utils
  /frameworks/base/media/libstagefright/matroska/
mkvparser.hpp 251 long long m_width; member in class:mkvparser::VideoTrack
  /hardware/qcom/media/mm-video/vidc/vdec/src/
h264_utils.cpp 164 m_width(0),
omx_vdec.cpp 269 m_width(0),
    [all...]
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.cpp 178 unsigned width() const { return m_width; }
183 : m_width(imageData->width())
190 unsigned m_width; local

Completed in 439 milliseconds

12 3