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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutSize.h 48 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 -= height
133 LayoutUnit m_width, m_height; member in class:blink::LayoutSize
    [all...]
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...]
FloatSize.h 49 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 > other.m_height ? m_height : other.m_height)
125 float m_width, m_height; member in class:blink::FloatSize
    [all...]
FloatBox.h 45 , 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...]
FloatSize.cpp 40 , 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);
  /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/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
DOMRectReadOnly.cpp 19 , m_height(height)
DOMRect.h 20 void setHeight(double height) { m_height = height; }
  /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
  /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/deqp/modules/gles3/functional/
es3fFboDepthbufferTests.cpp 56 , m_height (height)
89 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
92 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_width, m_height);
100 glViewport(0, 0, m_width, m_height);
132 readPixels(dst, 0, 0, m_width, m_height, glu::mapGLInternalFormat(colorFormat), Vec4(1.0f), Vec4(0.0f));
138 int m_height; member in class:deqp::gles3::Functional::BasicFboDepthCase
148 , m_height (height)
179 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
182 glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dataType, DE_NULL);
192 glViewport(0, 0, m_width, m_height);
224 const int m_height; member in class:deqp::gles3::Functional::DepthWriteClampCase
304 const int m_height; member in class:deqp::gles3::Functional::DepthTestClampCase
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_bmp.cpp 109 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_shift3
    [all...]
grfmt_sunras.cpp 104 m_height = m_strm.GetDWord();
113 if( m_width > 0 && m_height > 0 &&
166 m_width = m_height = -1;
209 for( y = 0; y < m_height; y++, data += step )
266 if( ++y >= m_height ) break;
278 for( y = 0; y < m_height; y++, data += step )
329 y, m_height, len,
333 y, m_height, len,
335 if( y >= m_height )
345 if( ++y >= m_height ) break
    [all...]
  /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
SVGTextMetrics.cpp 31 , m_height(0)
39 , m_height(0)
57 m_height = scaledFont.fontMetrics().floatHeight() / scalingFactor;
122 m_height = text->scaledFont().fontMetrics().floatHeight() / scalingFactor;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.cpp 52 , m_height(o.m_height)
68 && m_height == o.m_height
  /external/pdfium/core/src/fxge/dib/
fx_dib_main.cpp 41 m_Width = m_Height = 0;
67 m_Width = m_Height = m_Pitch = 0;
97 m_Height = height;
106 m_Width = m_Height = m_Pitch = 0;
156 m_Height = pSrcBitmap->m_Height;
161 FX_RECT rect(0, 0, m_Width, m_Height);
244 if (!m_pAlphaMask->Create(m_Width, m_Height, FXDIB_8bppMask)) {
306 FXSYS_memset8(m_pBuffer, (color & 0xff000000) ? 0xff : 0, m_Pitch * m_Height);
310 FXSYS_memset8(m_pBuffer, index ? 0xff : 0, m_Pitch * m_Height);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
IntSizeCG.cpp 33 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/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
FloatSizeMac.mm 34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
40 return NSMakeSize(m_width, m_height);
IntSizeMac.mm 33 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);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
ColorBuffer.h 33 GLuint getHeight() const { return m_height; }
53 GLuint m_height; member in class:ColorBuffer
  /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...]
  /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/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

Completed in 335 milliseconds

1 2 3 4 5 6