Home
last modified time | relevance | path

Searched refs:m_height (Results 1 – 25 of 42) sorted by relevance

12

/external/webkit/WebCore/platform/graphics/
DIntSize.h59 IntSize() : m_width(0), m_height(0) { } in IntSize()
60 IntSize(int width, int height) : m_width(width), m_height(height) { } in IntSize()
63 int height() const { return m_height; } in height()
66 void setHeight(int height) { m_height = height; } in setHeight()
68 bool isEmpty() const { return m_width <= 0 || m_height <= 0; } in isEmpty()
73 m_height += height; in expand()
79 m_height > other.m_height ? m_height : other.m_height); in expandedTo()
85 m_height < other.m_height ? m_height : other.m_height); in shrunkTo()
119 int m_width, m_height;
DFloatSize.h51 FloatSize() : m_width(0), m_height(0) { } in FloatSize()
52 FloatSize(float width, float height) : m_width(width), m_height(height) { } in FloatSize()
58 float height() const { return m_height; } in height()
61 void setHeight(float height) { m_height = height; } in setHeight()
63 bool isEmpty() const { return m_width <= 0 || m_height <= 0; } in isEmpty()
68 m_height > other.m_height ? m_height : other.m_height); in expandedTo()
74 m_height < other.m_height ? m_height : other.m_height); in shrunkTo()
88 float m_width, m_height;
DFloatSize.cpp35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) in FloatSize()
/external/webkit/WebCore/platform/
DLengthSize.h36 , m_height(height) in LengthSize()
42 return m_width == o.m_width && m_height == o.m_height;
48 void setHeight(Length height) { m_height = height; } in setHeight()
49 Length height() const { return m_height; } in height()
53 Length m_height; member
/external/webkit/WebCore/platform/image-decoders/
DImageDecoder.h54 RGBA32Buffer() : m_height(0), m_status(FrameEmpty), m_duration(0), in RGBA32Buffer()
61 m_height = 0; in clear()
71 unsigned height() const { return m_height; } in height()
78 void ensureHeight(unsigned rowIndex) { if (rowIndex > m_height) m_height = rowIndex; } in ensureHeight()
105 unsigned m_height; // The height (the number of rows we've fully decoded). variable
/external/webkit/WebCore/svg/
DPatternAttributes.h34 , m_height() in PatternAttributes()
52 SVGLength height() const { return m_height; } in height()
61 void setHeight(const SVGLength& value) { m_height = value; m_heightSet = true; } in setHeight()
81 SVGLength m_height; member
/external/webkit/WebCore/rendering/
DRootInlineBox.h57 …virtual int bottomOverflow() { return m_overflow ? m_overflow->m_bottomOverflow : m_y + m_height; } in bottomOverflow()
117 int selectionBottom() { return m_overflow ? m_overflow->m_selectionBottom : m_y + m_height; } in selectionBottom()
141 , m_bottomOverflow(box->m_y + box->m_height) in Overflow()
145 , m_selectionBottom(box->m_y + box->m_height) in Overflow()
196 if (top == m_y && bottom == m_y + m_height) in setVerticalSelectionPositions()
DInlineBox.h43 , m_height(0) in InlineBox()
78 , m_height(height) in InlineBox()
201 void setHeight(int h) { m_height = h; } in setHeight()
202 int height() const { return m_height; } in height()
251 int m_height; variable
DRenderSVGContainer.h44 int height() const { return m_height; } in height()
108 int m_height; variable
DRenderMarquee.h88 Length m_height; variable
DRenderLayer.h237 int height() const { return m_height; } in height()
239 void setHeight(int h) { m_height = h; } in setHeight()
449 int m_height; variable
DRenderSVGContainer.cpp45 , m_height(0) in RenderSVGContainer()
304 m_height = calcReplacedHeight(); in calcBounds()
/external/webkit/WebCore/platform/symbian/
DIntSizeSymbian.cpp44 , m_height(s.iHeight) in IntSize()
50 return TSize(m_width, m_height); in operator TSize()
/external/webkit/WebCore/platform/graphics/cg/
DIntSizeCG.cpp35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s… in IntSize()
41 return CGSizeMake(m_width, m_height); in operator CGSize()
DFloatSizeCG.cpp36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height) in FloatSize()
42 return CGSizeMake(m_width, m_height); in operator CGSize()
/external/webkit/WebCore/platform/graphics/win/
DIntSizeWin.cpp34 , m_height(s.cy) in IntSize()
40 SIZE s = {m_width, m_height}; in operator SIZE()
DQTMovieWin.cpp108 int m_height; member in QTMovieWinPrivate
129 , m_height(0) in QTMovieWinPrivate()
270 if (!m_height || !m_width) in updateGWorld()
277 else if (m_gWorld && (m_width > m_gWorldWidth || m_height > m_gWorldHeight)) { in updateGWorld()
291 m_gWorldHeight = max(cGWorldMinHeight, m_height); in createGWorld()
305 bounds.bottom = m_height; in createGWorld()
333 if (m_width == width && m_height == height) in setSize()
336 m_height = height; in setSize()
512 AlphaBlend(hdc, x, y, m_private->m_width, m_private->m_height, hdcSrc, in paint()
513 0, 0, m_private->m_width, m_private->m_height, blendFunction); in paint()
/external/webkit/WebCore/html/
DImageData.h43 unsigned height() const { return m_height; } in height()
49 unsigned m_height; variable
DImageData.cpp41 , m_height(height) in ImageData()
/external/webkit/WebKit/android/
DRenderSkinAndroid.h81 virtual void setDim(int width, int height) { m_width = width; m_height = height; } in setDim()
84 int m_height;
DRenderSkinAndroid.cpp40 : m_height(0) in RenderSkinAndroid()
/external/webkit/WebCore/platform/graphics/mac/
DFloatSizeMac.mm34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
40 return NSMakeSize(m_width, m_height);
DIntSizeMac.mm33 IntSize::IntSize(const NSSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s…
39 return NSMakeSize(m_width, m_height);
/external/webkit/WebCore/platform/graphics/qt/
DIntSizeQt.cpp38 , m_height(r.height()) in IntSize()
/external/webkit/WebCore/platform/graphics/wx/
DFloatRectWx.cpp37 , m_size(FloatSize(r.m_width, r.m_height)) in FloatRect()

12