/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(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/platform/geometry/cg/ |
FloatSizeCG.cpp | 34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height) 40 return CGSizeMake(m_width, m_height);
|
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/ |
IntSize.h | 46 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) * heightScale) 128 int m_width, m_height; member in class:WebCore::IntSize [all...] |
LayoutSize.h | 50 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 -= height 130 LayoutUnit m_width, m_height; member in class:WebCore::LayoutSize [all...] |
FloatSize.cpp | 40 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) 44 FloatSize::FloatSize(const LayoutSize& size) : m_width(size.width()), m_height(size.height()) 55 return fabs(m_width) < numeric_limits<float>::epsilon() && fabs(m_height) < numeric_limits<float>::epsilon(); 60 return isWithinIntRange(m_width) && isWithinIntRange(m_height);
|
FloatSize.h | 52 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 ? m_height : other.m_height) 118 float m_width, m_height; member in class:WebCore::FloatSize [all...] |
/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);
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableLengthSize.h | 46 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/html/canvas/ |
WebGLRenderbuffer.h | 51 m_height = height; 54 GC3Dsizei height() const { return m_height; } 77 GC3Dsizei m_width, m_height; member in class:WebCore::WebGLRenderbuffer
|
WebGLRenderbuffer.cpp | 49 , m_height(0)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGTextMetrics.h | 44 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
|
SVGTextMetrics.cpp | 31 , m_height(0) 38 , m_height(0) 55 m_height = scaledFont.fontMetrics().floatHeight() / scalingFactor; 113 m_height = text->scaledFont().fontMetrics().floatHeight() / scalingFactor;
|
/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 virtual int height() const { return m_height; } 57 int m_height; member in class:WebCore::FINAL
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleBoxData.cpp | 52 , m_height(o.m_height) 68 && m_height == o.m_height
|
StyleBoxData.h | 47 Length height() const { return m_height; } 70 Length m_height; member in class:WebCore::StyleBoxData
|
/frameworks/av/libvideoeditor/vss/mcs/src/ |
M4MCS_VideoPreProcessing.c | 171 Params.m_inputSize.m_height = pC->pPreResizeFrame->u_height; 174 Params.m_outputSize.m_height = pPlaneOut->u_height; 239 //Params.m_inputSize.m_height < Params.m_inputSize.m_width) 243 Params.m_outputSize.m_height = 251 -Params.m_outputSize.m_height)>>1)) * 253 pImagePlanesTemp[0].u_height = Params.m_outputSize.m_height; 256 -(Params.m_outputSize.m_height>>1)))>>1)\ 258 pImagePlanesTemp[1].u_height = Params.m_outputSize.m_height>>1; 261 -(Params.m_outputSize.m_height>>1)))>>1)\ 263 pImagePlanesTemp[2].u_height = Params.m_outputSize.m_height>>1 [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...] |
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglPbufferSurface.cpp | 26 m_height = val; 57 *val = m_height;
|
EglSurface.h | 41 void setDim(int width,int height){ m_width = width; m_height = height;}; 60 m_height(height), 70 EGLint m_height; member in class:EglSurface
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
ColorBuffer.h | 33 GLuint getHeight() const { return m_height; } 53 GLuint m_height; member in class:ColorBuffer
|
WindowSurface.cpp | 36 m_height(0), 74 win->m_height = p_height; 107 if (cbWidth != m_width || cbHeight != m_height) { 115 m_height = cbHeight; 145 if (!m_width && !m_height) return; 148 m_attachedColorBuffer->getHeight() != m_height) {
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
PatternAttributes.h | 36 , m_height() 58 SVGLength height() const { return m_height; } 86 m_height = value; 142 SVGLength m_height; member in struct:WebCore::PatternAttributes
|