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

1234

/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthSize.h36 , m_height(height)
42 return m_width == o.m_width && m_height == o.m_height;
48 void setHeight(const Length& height) { m_height = height; }
49 const Length& height() const { return m_height; }
53 Length m_height; member in class:blink::LengthSize
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatSizeCG.cpp34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 return CGSizeMake(m_width, m_height);
H A DIntSizeCG.cpp33 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
39 return CGSizeMake(m_width, m_height);
/external/deqp/framework/common/
H A DtcuSurface.cpp30 , m_height (0)
36 , m_height (height)
55 m_height = height;
H A DtcuRenderTarget.cpp31 , m_height (0)
41 , m_height (height)
H A DtcuRenderTarget.hpp47 int getHeight (void) const { return m_height; }
53 int m_height; member in class:tcu::RenderTarget
H A DtcuSurface.hpp54 int getHeight (void) const { return m_height; }
69 int m_height; member in class:tcu::Surface
75 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
92 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
117 DE_ASSERT(y < m_height);
120 DE_ASSERT(y + height <= m_height);
135 DE_ASSERT(y < m_height);
138 DE_ASSERT(y + height <= m_height);
147 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0]);
153 return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height,
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntSize.h45 IntSize() : m_width(0), m_height(0) { }
46 IntSize(int width, int height) : m_width(width), m_height(height) { }
49 int height() const { return m_height; }
52 void setHeight(int height) { m_height = height; }
54 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
55 bool isZero() const { return !m_width && !m_height; }
57 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
62 m_height += height;
68 m_height = static_cast<int>(static_cast<float>(m_height) * heightScal
128 int m_width, m_height; member in class:blink::IntSize
[all...]
H A DFloatSize.cpp40 , m_height(size.height().toFloat())
51 return fabs(m_width) < std::numeric_limits<float>::epsilon() && fabs(m_height) < std::numeric_limits<float>::epsilon();
56 return isWithinIntRange(m_width) && isWithinIntRange(m_height);
H A DLayoutSize.h48 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
49 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
51 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
54 LayoutUnit height() const { return m_height; }
57 void setHeight(LayoutUnit height) { m_height = height; }
59 bool isEmpty() const { return m_width.rawValue() <= 0 || m_height.rawValue() <= 0; }
60 bool isZero() const { return !m_width && !m_height; }
62 float aspectRatio() const { return m_width.toFloat() / m_height.toFloat(); }
67 m_height += height;
73 m_height
133 LayoutUnit m_width, m_height; member in class:blink::LayoutSize
[all...]
H A DFloatSize.h49 FloatSize() : m_width(0), m_height(0) { }
50 FloatSize(float width, float height) : m_width(width), m_height(height) { }
51 FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
57 float height() const { return m_height; }
60 void setHeight(float height) { m_height = height; }
62 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
71 m_height += height;
79 m_height *= scaleY;
85 m_height > othe
125 float m_width, m_height; member in class:blink::FloatSize
[all...]
H A DFloatBox.h45 , m_height(0)
55 , m_height(height)
65 , m_height(box.height())
84 m_height = origin.y();
120 m_height = maxY - minY;
147 bool isEmpty() const { return (m_width <= 0 && m_height <= 0) || (m_width <= 0 && m_depth <= 0) || (m_height <= 0 && m_depth <= 0); }
150 float bottom() const { return m_y + m_height; }
156 float height() const { return m_height; }
163 float m_height; member in class:blink::FloatBox
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMRectReadOnly.h20 double height() const { return m_height; }
22 double top() const { return std::min(m_y, m_y + m_height); }
24 double bottom() const { return std::max(m_y, m_y + m_height); }
35 double m_height; member in class:blink::DOMRectReadOnly
H A DDOMRectReadOnly.cpp19 , m_height(height)
H A DDOMRect.h20 void setHeight(double height) { m_height = height; }
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableLengthSize.h46 const AnimatableValue* height() const { return m_height.get(); }
56 , m_height(height)
63 RefPtrWillBeMember<AnimatableValue> m_height; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.h49 bool isEmpty() const { return !m_width && !m_height && m_length <= 1; }
54 float height() const { return m_height; }
64 float m_height; member in class:blink::SVGTextMetrics
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DEllipsisBox.h36 , m_height(height)
48 virtual float virtualLogicalHeight() const OVERRIDE { return m_height; }
51 int height() const { return m_height; }
57 int m_height; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleBoxData.cpp52 , m_height(o.m_height)
68 && 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...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGForeignObjectElement.h39 SVGAnimatedLength* height() const { return m_height.get(); }
58 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DSVGRectElement.h39 SVGAnimatedLength* height() const { return m_height.get(); }
57 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderbuffer.h51 m_height = height;
54 GLsizei height() const { return m_height; }
75 GLsizei m_width, m_height; member in class:blink::FINAL

Completed in 2046 milliseconds

1234