Searched defs:m_height (Results 1 - 14 of 14) sorted by relevance

/external/webkit/WebCore/html/
H A DImageData.h43 unsigned height() const { return m_height; }
49 unsigned m_height; member in class:WebCore::ImageData
/external/webkit/WebCore/rendering/
H A DSVGInlineFlowBox.h36 , 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
H A DRenderMarquee.h89 Length m_height; member in class:WebCore::RenderMarquee
H A DEllipsisBox.h35 , m_height(height)
48 virtual int height() const { return m_height; }
52 int m_height; member in class:WebCore::EllipsisBox
H A DSVGInlineTextBox.h55 virtual int virtualHeight() const { return m_height; }
56 void setHeight(int h) { m_height = h; }
90 int m_height; member in class:WebCore::SVGInlineTextBox
H A DSVGRootInlineBox.h51 , 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
H A DRenderLayer.h229 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/platform/
H A DLengthSize.h36 , 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/
H A DRenderSkinAndroid.h83 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/
H A DFloatSize.h53 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 < othe
91 float m_width, m_height; member in class:WebCore::FloatSize
[all...]
H A DIntSize.h66 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 > othe
143 int m_width, m_height; member in class:WebCore::IntSize
[all...]
/external/webkit/WebCore/svg/
H A DPatternAttributes.h31 , 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/
H A DSerializedScriptValue.cpp179 unsigned height() const { return m_height; }
184 , m_height(imageData->height())
191 unsigned m_height; local
/external/webkit/WebCore/platform/graphics/win/
H A DQTMovieWin.cpp117 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 171 milliseconds