HomeSort by relevance Sort by last modified time
    Searched defs:m_width (Results 1 - 16 of 16) sorted by null

  /external/webkit/WebCore/rendering/
FixedTableLayout.h 42 Vector<Length> m_width; member in class:WebCore::FixedTableLayout
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
RenderBlock.h 404 , m_width(0)
417 int m_width; member in struct:WebCore::RenderBlock::FloatingObject
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
  /external/webkit/WebCore/html/
TextMetrics.h 37 unsigned width() const { return m_width; }
38 void setWidth(float w) { m_width = w; }
42 : m_width(0)
45 float m_width; member in class:WebCore::TextMetrics
ImageData.h 42 unsigned width() const { return m_width; }
48 unsigned m_width; member in class:WebCore::ImageData
  /external/webkit/WebCore/platform/
LengthSize.h 35 : m_width(width)
42 return m_width == o.m_width && m_height == o.m_height;
45 void setWidth(Length width) { m_width = width; }
46 Length width() const { return m_width; }
52 Length m_width; member in struct:WebCore::LengthSize
  /external/webkit/WebCore/platform/graphics/
Pen.h 66 unsigned m_width; member in class:WebCore::Pen
FloatSize.h 53 FloatSize() : m_width(0), m_height(0) { }
54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
59 float width() const { return m_width; }
62 void setWidth(float width) { m_width = width; }
65 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
69 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
75 return FloatSize(m_width < other.m_width ? m_width : other.m_width
91 float m_width, m_height; member in class:WebCore::FloatSize
    [all...]
IntSize.h 66 IntSize() : m_width(0), m_height(0) { }
67 IntSize(int width, int height) : m_width(width), m_height(height) { }
69 int width() const { return m_width; }
72 void setWidth(int width) { m_width = width; }
75 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
76 bool isZero() const { return !m_width && !m_height; }
80 m_width += width;
86 m_width = static_cast<int>(static_cast<float>(m_width) * scale);
92 return IntSize(m_width > other.m_width ? m_width : other.m_width
143 int m_width, m_height; member in class:WebCore::IntSize
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleMultiColData.h 56 float m_width; member in class:WebCore::StyleMultiColData
  /external/webkit/WebKit/android/
RenderSkinAndroid.h 83 virtual void setDim(int width, int height) { m_width = width; m_height = height; }
87 int m_width; member in class:WebCore::RenderSkinAndroid
  /external/webkit/WebCore/platform/graphics/wince/
FontWince.cpp 81 float m_width; member in class:WebCore::TextRunComponent
97 m_width = it.m_runWidthSoFar;
105 m_width = s * font.primaryFont()->widthForGlyph(' ');
134 offset += add + letterSpacing + components->last().m_width;
148 offset += components->last().m_width + letterSpacing;
156 offset += wordSpacing + add + components->last().m_width + letterSpacing;
164 offset += components->last().m_width + letterSpacing;
172 offset += components->last().m_width;
183 offset += components->last().m_width;
192 offset += add + components->last().m_width;
    [all...]
  /external/webkit/WebCore/svg/
PatternAttributes.h 30 , m_width()
48 SVGLength width() const { return m_width; }
57 void setWidth(const SVGLength& value) { m_width = value; m_widthSet = true; }
77 SVGLength m_width; member in struct:WebCore::PatternAttributes
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.cpp 178 unsigned width() const { return m_width; }
183 : m_width(imageData->width())
190 unsigned m_width; local
  /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...]

Completed in 274 milliseconds