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

  /external/webkit/WebCore/rendering/
SVGInlineFlowBox.h 36 , m_height(0)
40 virtual int virtualHeight() const { return m_height; }
41 void setHeight(int h) { m_height = h; }
48 int m_height; member in class:WebCore::SVGInlineFlowBox
EllipsisBox.h 35 , m_height(height)
48 virtual int height() const { return m_height; }
52 int m_height; member in class:WebCore::EllipsisBox
RenderMarquee.h 89 Length m_height; member in class:WebCore::RenderMarquee
SVGInlineTextBox.h 55 virtual int virtualHeight() const { return m_height; }
56 void setHeight(int h) { m_height = h; }
90 int m_height; member in class:WebCore::SVGInlineTextBox
SVGRootInlineBox.h 51 , m_height(0)
58 virtual int virtualHeight() const { return m_height; }
59 void setHeight(int h) { m_height = h; }
92 int m_height; member in class:WebCore::SVGRootInlineBox
RenderLayer.h 229 int height() const { return m_height; }
231 void setHeight(int h) { m_height = h; }
587 int m_height; member in class:WebCore::RenderLayer
  /external/webkit/WebCore/html/
ImageData.h 43 unsigned height() const { return m_height; }
49 unsigned m_height; member in class:WebCore::ImageData
  /external/webkit/WebCore/platform/
LengthSize.h 36 , m_height(height)
42 return m_width == o.m_width && m_height == o.m_height;
48 void setHeight(Length height) { m_height = height; }
49 Length height() const { return m_height; }
53 Length m_height; member in struct:WebCore::LengthSize
  /external/webkit/WebKit/android/
RenderSkinAndroid.h 83 virtual void setDim(int width, int height) { m_width = width; m_height = height; }
86 int m_height; member in class:WebCore::RenderSkinAndroid
  /external/webkit/WebCore/platform/graphics/
FloatSize.h 53 FloatSize() : m_width(0), m_height(0) { }
54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
60 float height() const { return m_height; }
63 void setHeight(float height) { m_height = height; }
65 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
70 m_height > other.m_height ? m_height : other.m_height);
76 m_height < other.m_height ? m_height : other.m_height)
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) { }
70 int height() const { return m_height; }
73 void setHeight(int height) { m_height = height; }
75 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
76 bool isZero() const { return !m_width && !m_height; }
81 m_height += height;
87 m_height = static_cast<int>(static_cast<float>(m_height) * scale);
93 m_height > other.m_height ? m_height : other.m_height)
143 int m_width, m_height; member in class:WebCore::IntSize
    [all...]
  /external/webkit/WebCore/svg/
PatternAttributes.h 31 , m_height()
49 SVGLength height() const { return m_height; }
58 void setHeight(const SVGLength& value) { m_height = value; m_heightSet = true; }
78 SVGLength m_height; member in struct:WebCore::PatternAttributes
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.cpp 179 unsigned height() const { return m_height; }
184 , m_height(imageData->height())
191 unsigned m_height; local
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.cpp 117 int m_height; member in class:QTMovieWinPrivate
151 , m_height(0)
349 if (!m_height || !m_width)
356 else if (m_gWorld && (m_width > m_gWorldWidth || m_height > m_gWorldHeight)) {
370 m_gWorldHeight = max(cGWorldMinHeight, m_height);
384 bounds.bottom = m_height;
411 if (m_width == width && m_height == height)
414 m_height = height;
438 bounds.bottom = m_height;
637 height = m_private->m_height;
    [all...]

Completed in 272 milliseconds