Searched defs:m_height (Results 1 - 25 of 58) sorted by relevance

123

/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/
H A DRenderMarquee.h98 Length m_height; member in class:blink::FINAL
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/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/svg/
H A DSVGForeignObjectElement.h39 SVGAnimatedLength* height() const { return m_height.get(); }
58 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DSVGFilterPrimitiveStandardAttributes.h52 SVGAnimatedLength* height() const { return m_height.get(); }
80 RefPtr<SVGAnimatedLength> m_height; member in class:blink::SVGFilterPrimitiveStandardAttributes
H A DSVGImageElement.h46 SVGAnimatedLength* height() const { return m_height.get(); }
76 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DSVGMaskElement.h42 SVGAnimatedLength* height() const { return m_height.get(); }
64 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DSVGPatternElement.h54 SVGAnimatedLength* height() const { return m_height.get(); }
80 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
H A DSVGUseElement.h50 SVGAnimatedLength* height() const { return m_height.get(); }
101 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DSVGFilterElement.h52 SVGAnimatedLength* height() const { return m_height.get(); }
75 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DSVGSVGElement.h118 SVGAnimatedLength* height() const { return m_height.get(); }
157 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
H A DPatternAttributes.h36 , m_height(SVGLength::create(LengthModeHeight))
58 SVGLength* height() const { return m_height.get(); }
86 m_height = value;
142 RefPtr<SVGLength> m_height; member in struct:blink::PatternAttributes
/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/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
/external/deqp/framework/common/
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/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
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleBoxData.h47 const Length& height() const { return m_height; }
70 Length m_height; member in class:blink::StyleBoxData
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
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 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...]
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp53 Length m_height; member in struct:rdar11293995::LengthSize
/external/opencv/otherlibs/highgui/
H A Dgrfmt_base.h71 int GetHeight() { return m_height; };
85 int m_height; // height of the image ( filled by ReadHeader ) member in class:GrFmtReader
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_rendering_buffer.h52 m_height(0),
61 m_height(0),
71 m_height = height;
101 return m_height;
140 unsigned m_height; member in class:agg::rendering_buffer

Completed in 4134 milliseconds

123