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

123

/external/webkit/Source/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/Source/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp35 , m_height(s.cy)
41 SIZE s = {m_width, m_height};
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTextureInfo.cpp42 m_height = 0;
49 && otherTexture->m_height == m_height
56 m_height = sourceTexture->m_height;
H A DTextureInfo.h59 int32_t m_height; member in class:WebCore::TextureInfo
/external/webkit/Source/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/Source/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/Source/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/Source/WebCore/platform/graphics/
H A DIntSize.h64 IntSize() : m_width(0), m_height(0) { }
65 IntSize(int width, int height) : m_width(width), m_height(height) { }
68 int height() const { return m_height; }
71 void setHeight(int height) { m_height = height; }
73 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
74 bool isZero() const { return !m_width && !m_height; }
76 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
81 m_height += height;
87 m_height = static_cast<int>(static_cast<float>(m_height) * scal
148 int m_width, m_height; member in class:WebCore::IntSize
[all...]
H A DFloatSize.h52 FloatSize() : m_width(0), m_height(0) { }
53 FloatSize(float width, float height) : m_width(width), m_height(height) { }
59 float height() const { return m_height; }
62 void setHeight(float height) { m_height = height; }
64 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
71 m_height *= scale;
77 m_height > other.m_height ? m_height
104 float m_width, m_height; member in class:WebCore::FloatSize
[all...]
H A DFloatSize.cpp36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DIntSizeHaiku.cpp38 , m_height(size.IntegerHeight())
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp38 , m_height(r.height())
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderbuffer.h52 m_height = height;
55 GC3Dsizei getHeight() const { return m_height; }
77 GC3Dsizei m_width, m_height; member in class:WebCore::WebGLRenderbuffer
H A DWebGLRenderbuffer.cpp46 , m_height(0)
/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntSizeBrew.cpp35 , m_height(size.cy)
/external/webkit/Source/WebCore/rendering/style/
H A DStyleBoxData.cpp44 , m_height(o.m_height)
58 && m_height == o.m_height
/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.cpp109 m_height = m_strm.GetDWord();
116 if( m_width > 0 && m_height > 0 &&
152 m_height = m_strm.GetWord();
156 if( m_width > 0 && m_height > 0 &&
180 m_width = m_height = -1;
204 data += (m_height - 1)*step;
227 for( y = 0; y < m_height; y++, data += step )
241 for( y = 0; y < m_height; y++, data += step )
296 int y_shift = m_height - y;
308 y, m_height, x_shift
[all...]
H A Dgrfmt_sunras.cpp104 m_height = m_strm.GetDWord();
113 if( m_width > 0 && m_height > 0 &&
166 m_width = m_height = -1;
209 for( y = 0; y < m_height; y++, data += step )
266 if( ++y >= m_height ) break;
278 for( y = 0; y < m_height; y++, data += step )
329 y, m_height, len,
333 y, m_height, len,
335 if( y >= m_height )
345 if( ++y >= m_height ) brea
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextMetrics.h39 float height() const { return m_height; }
72 float m_height; member in class:WebCore::SVGTextMetrics
H A DSVGTextMetrics.cpp32 , m_height(0)
51 m_height = scaledFont.fontMetrics().floatHeight() / scalingFactor;
63 && m_height == other.m_height
/external/webkit/Source/WebCore/svg/
H A DPatternAttributes.h36 , m_height()
58 SVGLength height() const { return m_height; }
86 m_height = value;
142 SVGLength m_height; member in struct:WebCore::PatternAttributes
/external/webkit/Source/WebCore/rendering/
H A DEllipsisBox.h35 , m_height(height)
48 virtual int height() const { return m_height; }
52 int m_height; member in class:WebCore::EllipsisBox

Completed in 2202 milliseconds

123