HomeSort by relevance Sort by last modified time
    Searched defs:m_height (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/
LengthSize.h 36 , 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/animation/animatable/
AnimatableLengthSize.h 46 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/dom/
DOMRectReadOnly.h 20 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/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.h 36 , 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
RenderMarquee.h 98 Length m_height; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetrics.h 49 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/
SVGFilterPrimitiveStandardAttributes.h 52 SVGAnimatedLength* height() const { return m_height.get(); }
80 RefPtr<SVGAnimatedLength> m_height; member in class:blink::SVGFilterPrimitiveStandardAttributes
SVGForeignObjectElement.h 39 SVGAnimatedLength* height() const { return m_height.get(); }
58 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGImageElement.h 46 SVGAnimatedLength* height() const { return m_height.get(); }
76 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGMaskElement.h 42 SVGAnimatedLength* height() const { return m_height.get(); }
64 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGRectElement.h 39 SVGAnimatedLength* height() const { return m_height.get(); }
57 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGFilterElement.h 52 SVGAnimatedLength* height() const { return m_height.get(); }
75 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGPatternElement.h 54 SVGAnimatedLength* height() const { return m_height.get(); }
80 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGUseElement.h 50 SVGAnimatedLength* height() const { return m_height.get(); }
101 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
SVGSVGElement.h 118 SVGAnimatedLength* height() const { return m_height.get(); }
157 RefPtr<SVGAnimatedLength> m_height; member in class:blink::FINAL
  /external/deqp/framework/common/
tcuSurface.hpp 54 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, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0])
    [all...]
tcuRenderTarget.hpp 47 int getHeight (void) const { return m_height; }
53 int m_height; member in class:tcu::RenderTarget
  /sdk/emulator/opengl/host/libs/libOpenglRender/
ColorBuffer.h 33 GLuint getHeight() const { return m_height; }
53 GLuint m_height; member in class:ColorBuffer
WindowSurface.h 59 GLuint m_height; member in class:WindowSurface
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderbuffer.h 51 m_height = height;
54 GLsizei height() const { return m_height; }
75 GLsizei m_width, m_height; member in class:blink::FINAL
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglSurface.h 42 void setDim(int width,int height){ m_width = width; m_height = height;};
61 m_height(height),
71 EGLint m_height; member in class:EglSurface
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 47 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/
IntSize.h 45 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) * heightScale)
128 int m_width, m_height; member in class:blink::IntSize
    [all...]
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 53 Length m_height; member in struct:rdar11293995::LengthSize
  /external/pdfium/core/src/fxge/agg/agg23/
agg_rendering_buffer.h 52 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 376 milliseconds

1 2 3