Searched refs:m_height (Results 1 - 25 of 39) sorted by relevance

12

/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/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp35 , m_height(s.cy)
41 SIZE s = {m_width, m_height};
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...]
/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 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 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 DRenderMarquee.h89 Length m_height; member in class:WebCore::RenderMarquee
/external/webkit/WebCore/platform/graphics/mac/
H A DFloatSizeMac.mm34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
40 return NSMakeSize(m_width, m_height);
H A DIntSizeMac.mm33 IntSize::IntSize(const NSSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
39 return NSMakeSize(m_width, m_height);
/external/webkit/WebCore/platform/graphics/cg/
H A DFloatSizeCG.cpp36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
42 return CGSizeMake(m_width, m_height);
H A DIntSizeCG.cpp35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
41 return CGSizeMake(m_width, m_height);
/external/webkit/WebCore/platform/graphics/wx/
H A DIntSizeWx.cpp36 , m_height(s.y)
42 return wxSize(m_width, m_height);
H A DFloatRectWx.cpp37 , m_size(FloatSize(r.m_width, r.m_height))
/external/webkit/WebCore/platform/graphics/
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...]
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 DFloatSize.cpp35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
/external/webkit/WebCore/platform/graphics/haiku/
H A DIntSizeHaiku.cpp38 , m_height(size.IntegerHeight())
/external/webkit/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp38 , m_height(r.height())
/external/webkit/WebCore/html/
H A DImageData.h43 unsigned height() const { return m_height; }
49 unsigned m_height; member in class:WebCore::ImageData
H A DImageData.cpp41 , m_height(height)
/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
H A DRenderSkinAndroid.cpp42 : m_height(0)
/external/webkit/WebCore/platform/graphics/brew/
H A DIntSizeBrew.cpp35 , m_height(size.cy)
/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

Completed in 243 milliseconds

12