Home
last modified time | relevance | path

Searched refs:m_height (Results 176 – 200 of 3819) sorted by path

12345678910>>...153

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/
H A DChangeLog-2010-12-0629342 …In SVGRectElement we still store SVGLength m_x/m_y/m_width/m_height members, and offer a new "xAni…
H A DChangeLog-2011-02-1631844 Merge m_height and m_width members of ImageData into the new m_size member.
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderbuffer.cpp46 , m_height(0) in WebGLRenderbuffer()
H A DWebGLRenderbuffer.h52 m_height = height; in setSize()
55 GC3Dsizei getHeight() const { return m_height; } in getHeight()
77 GC3Dsizei m_width, m_height; variable
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/
H A 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
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.cpp36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) in FloatSize()
H A DFloatSize.h52 FloatSize() : m_width(0), m_height(0) { } in FloatSize()
53 FloatSize(float width, float height) : m_width(width), m_height(height) { } in FloatSize()
59 float height() const { return m_height; } in height()
62 void setHeight(float height) { m_height = height; } in setHeight()
64 bool isEmpty() const { return m_width <= 0 || m_height <= 0; } in isEmpty()
66 float aspectRatio() const { return m_width / m_height; } in aspectRatio()
73 m_height *= scaleY; in scale()
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()
91 return m_width * m_width + m_height * m_height; in diagonalLengthSquared()
[all …]
H A DIntSize.h64 IntSize() : m_width(0), m_height(0) { } in IntSize()
68 int height() const { return m_height; } in height()
71 void setHeight(int height) { m_height = height; } in setHeight()
73 bool isEmpty() const { return m_width <= 0 || m_height <= 0; } in isEmpty()
74 bool isZero() const { return !m_width && !m_height; } in isZero()
81 m_height += height; in expand()
87 m_height = static_cast<int>(static_cast<float>(m_height) * scale); in scale()
93 m_height > other.m_height ? m_height : other.m_height); in expandedTo()
99 m_height < other.m_height ? m_height : other.m_height); in shrunkTo()
109 return IntSize(m_height, m_width); in transposedSize()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/cg/
H A 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()
H A 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()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/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…
39 return NSMakeSize(m_width, m_height);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp38 , m_height(r.height()) in IntSize()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp35 , m_height(s.cy) in IntSize()
41 SIZE s = {m_width, m_height}; in operator SIZE()
H A DQTDecompressionSession.cpp55 , m_height(height) in QTDecompressionSession()
111 (**description).height = m_height; in initializeSession()
149 && inBuffer.height() == m_height; in canDecompress()
H A DQTDecompressionSession.h59 size_t m_height; variable
H A DQTMovie.cpp91 int m_height; member in QTMoviePrivate
116 , m_height(0) in QTMoviePrivate()
H A DQTMovieGWorld.cpp88 int m_height; member in QTMovieGWorldPrivate
113 , m_height(0) in QTMovieGWorldPrivate()
178 if (!m_height || !m_width) in updateGWorld()
199 m_gWorldHeight = max(cGWorldMinHeight, m_height); in createGWorld()
211 bounds.bottom = m_height; in createGWorld()
236 if (m_width == width && m_height == height) in setSize()
239 m_height = height; in setSize()
263 bounds.bottom = m_height; in updateMovieSize()
347 height = m_private->m_height; in getCurrentFrameInfo()
365 AlphaBlend(hdc, x, y, m_private->m_width, m_private->m_height, hdcSrc, in paint()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DEllipsisBox.cpp120 IntRect boundsRect = IntRect(tx, ty, m_logicalWidth, m_height); in nodeAtPoint()
H A DEllipsisBox.h35 , m_height(height) in EllipsisBox()
48 virtual int height() const { return m_height; } in height()
52 int m_height; variable
H A DRenderLayer.cpp143 , m_height(0) in RenderLayer()
1795 return m_height; in visibleHeight()
H A DRenderLayer.h223 int height() const { return m_height; } in height()
224 IntSize size() const { return IntSize(m_width, m_height); } in size()
227 void setHeight(int h) { m_height = h; } in setHeight()
634 int m_height; variable
H A DRenderMarquee.h91 Length m_height; variable
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h803 void setHeight(Length v) { SET_VAR(m_box, m_height, v) } in setHeight()
H A DStyleBoxData.cpp44 , m_height(o.m_height) in StyleBoxData()
58 && m_height == o.m_height in operator ==()

12345678910>>...153