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

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableLengthSize.h46 const AnimatableValue* height() const { return m_height.get(); }
55 , m_height(height)
62 RefPtr<AnimatableValue> m_height; member in class:WebCore::AnimatableLengthSize
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMarquee.h102 Length m_height; member in class:WebCore::FINAL
H A DEllipsisBox.h36 , m_height(height)
48 virtual float virtualLogicalHeight() const OVERRIDE { return m_height; }
51 virtual int height() const { return m_height; }
57 int m_height; member in class:WebCore::FINAL
/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(Length height) { m_height = height; }
49 Length height() const { return m_height; }
53 Length m_height; member in struct:WebCore::LengthSize
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.h44 bool isEmpty() const { return !m_width && !m_height && !m_glyph.isValid && m_length == 1; }
49 float height() const { return m_height; }
70 float m_height; member in class:WebCore::SVGTextMetrics
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderbuffer.h51 m_height = height;
54 GC3Dsizei height() const { return m_height; }
77 GC3Dsizei m_width, m_height; member in class:WebCore::WebGLRenderbuffer
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleBoxData.h47 Length height() const { return m_height; }
70 Length m_height; member in class:WebCore::StyleBoxData
H A DBasicShapes.h74 Length height() const { return m_height; }
81 void setHeight(Length height) { m_height = height; }
103 Length m_height; member in class:WebCore::BasicShapeRectangle
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatSize.h52 FloatSize() : m_width(0), m_height(0) { }
53 FloatSize(float width, float height) : m_width(width), m_height(height) { }
60 float height() const { return m_height; }
63 void setHeight(float height) { m_height = height; }
65 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
69 float aspectRatio() const { return m_width / m_height; }
74 m_height += height;
82 m_height *= scaleY;
88 m_height > other.m_height
118 float m_width, m_height; member in class:WebCore::FloatSize
[all...]
H A DIntSize.h46 IntSize() : m_width(0), m_height(0) { }
47 IntSize(int width, int height) : m_width(width), m_height(height) { }
50 int height() const { return m_height; }
53 void setHeight(int height) { m_height = height; }
55 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
56 bool isZero() const { return !m_width && !m_height; }
58 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
63 m_height += height;
69 m_height = static_cast<int>(static_cast<float>(m_height) * heightScal
128 int m_width, m_height; member in class:WebCore::IntSize
[all...]
H A DLayoutSize.h50 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
51 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
53 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
56 LayoutUnit height() const { return m_height; }
59 void setHeight(LayoutUnit height) { m_height = height; }
61 bool isEmpty() const { return m_width.rawValue() <= 0 || m_height.rawValue() <= 0; }
62 bool isZero() const { return !m_width && !m_height; }
64 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
69 m_height += height;
75 m_height
130 LayoutUnit m_width, m_height; member in class:WebCore::LayoutSize
[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/chromium_org/third_party/WebKit/Source/core/svg/
H A DPatternAttributes.h36 , m_height()
58 SVGLength height() const { return m_height; }
86 m_height = value;
142 SVGLength m_height; member in struct:WebCore::PatternAttributes
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestThemeControlWin.h196 const int m_height; member in class:WebTestRunner::WebTestThemeControlWin
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.h72 CSSPrimitiveValue* height() const { return m_height.get(); }
79 void setHeight(PassRefPtr<CSSPrimitiveValue> height) { m_height = height; }
96 RefPtr<CSSPrimitiveValue> m_height; member in class:WebCore::CSSBasicShapeRectangle
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext3DImagePacking.cpp1284 : m_width(width), m_height(height), m_srcStart(srcStart), m_dstStart(dstStart), m_srcStride(srcStride), m_dstStride(dstStride), m_success(false)
1305 const unsigned m_width, m_height; member in class:WebCore::__anon11151::FormatConverter
1437 for (size_t i = 0; i < m_height; ++i) {
1443 for (size_t i = 0; i < m_height; ++i) {
1450 for (size_t i = 0; i < m_height; ++i) {
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageReader.h189 , m_height(0)
220 m_height = height;
222 WebCore::IntRect frameRect() const { return WebCore::IntRect(m_xOffset, m_yOffset, m_width, m_height); }
226 unsigned height() const { return m_height; }
258 unsigned m_height; member in struct:GIFFrameContext
/external/libvpx/libwebm/
H A Dmkvparser.hpp406 long long m_height; member in class:mkvparser::VideoTrack

Completed in 461 milliseconds