/external/webkit/WebCore/platform/graphics/ |
D | IntSize.h | 59 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;
|
D | FloatSize.h | 51 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;
|
D | FloatSize.cpp | 35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) in FloatSize()
|
/external/webkit/WebCore/platform/ |
D | LengthSize.h | 36 , 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/ |
D | ImageDecoder.h | 54 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/ |
D | PatternAttributes.h | 34 , 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/ |
D | RootInlineBox.h | 57 …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()
|
D | InlineBox.h | 43 , 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
|
D | RenderSVGContainer.h | 44 int height() const { return m_height; } in height() 108 int m_height; variable
|
D | RenderMarquee.h | 88 Length m_height; variable
|
D | RenderLayer.h | 237 int height() const { return m_height; } in height() 239 void setHeight(int h) { m_height = h; } in setHeight() 449 int m_height; variable
|
D | RenderSVGContainer.cpp | 45 , m_height(0) in RenderSVGContainer() 304 m_height = calcReplacedHeight(); in calcBounds()
|
/external/webkit/WebCore/platform/symbian/ |
D | IntSizeSymbian.cpp | 44 , m_height(s.iHeight) in IntSize() 50 return TSize(m_width, m_height); in operator TSize()
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | IntSizeCG.cpp | 35 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()
|
D | FloatSizeCG.cpp | 36 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/ |
D | IntSizeWin.cpp | 34 , m_height(s.cy) in IntSize() 40 SIZE s = {m_width, m_height}; in operator SIZE()
|
D | QTMovieWin.cpp | 108 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/ |
D | ImageData.h | 43 unsigned height() const { return m_height; } in height() 49 unsigned m_height; variable
|
D | ImageData.cpp | 41 , m_height(height) in ImageData()
|
/external/webkit/WebKit/android/ |
D | RenderSkinAndroid.h | 81 virtual void setDim(int width, int height) { m_width = width; m_height = height; } in setDim() 84 int m_height;
|
D | RenderSkinAndroid.cpp | 40 : m_height(0) in RenderSkinAndroid()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | FloatSizeMac.mm | 34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height) 40 return NSMakeSize(m_width, m_height);
|
D | IntSizeMac.mm | 33 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/ |
D | IntSizeQt.cpp | 38 , m_height(r.height()) in IntSize()
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | FloatRectWx.cpp | 37 , m_size(FloatSize(r.m_width, r.m_height)) in FloatRect()
|