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

1 2 3 4

  /external/webkit/Source/WebCore/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/webkit/Source/WebCore/platform/graphics/win/
IntSizeWin.cpp 35 , m_height(s.cy)
41 SIZE s = {m_width, m_height};
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TextureInfo.cpp 42 m_height = 0;
49 && otherTexture->m_height == m_height
56 m_height = sourceTexture->m_height;
  /external/webkit/Source/WebCore/platform/graphics/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/webkit/Source/WebCore/platform/graphics/cg/
FloatSizeCG.cpp 36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
42 return CGSizeMake(m_width, m_height);
IntSizeCG.cpp 35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
41 return CGSizeMake(m_width, m_height);
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntSizeWx.cpp 36 , m_height(s.y)
42 return wxSize(m_width, m_height);
FloatRectWx.cpp 37 , m_size(FloatSize(r.m_width, r.m_height))
  /external/webkit/Source/WebCore/platform/graphics/
IntSize.h 64 IntSize() : m_width(0), m_height(0) { }
65 IntSize(int width, int height) : m_width(width), m_height(height) { }
68 int height() const { return m_height; }
71 void setHeight(int height) { m_height = height; }
73 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
74 bool isZero() const { return !m_width && !m_height; }
76 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
81 m_height += height;
87 m_height = static_cast<int>(static_cast<float>(m_height) * scale)
148 int m_width, m_height; member in class:WebCore::IntSize
    [all...]
FloatSize.h 52 FloatSize() : m_width(0), m_height(0) { }
53 FloatSize(float width, float height) : m_width(width), m_height(height) { }
59 float height() const { return m_height; }
62 void setHeight(float height) { m_height = height; }
64 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
71 m_height *= scale;
77 m_height > other.m_height ? m_height : other.m_height)
104 float m_width, m_height; member in class:WebCore::FloatSize
    [all...]
FloatSize.cpp 36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
  /external/webkit/Source/WebCore/platform/graphics/haiku/
IntSizeHaiku.cpp 38 , m_height(size.IntegerHeight())
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntSizeQt.cpp 38 , m_height(r.height())
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderbuffer.h 52 m_height = height;
55 GC3Dsizei getHeight() const { return m_height; }
77 GC3Dsizei m_width, m_height; member in class:WebCore::WebGLRenderbuffer
WebGLRenderbuffer.cpp 46 , m_height(0)
  /external/webkit/Source/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 35 , m_height(size.cy)
  /external/webkit/Source/WebCore/rendering/style/
StyleBoxData.cpp 44 , m_height(o.m_height)
58 && m_height == o.m_height
StyleBoxData.h 47 Length height() const { return m_height; }
69 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...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PictureLayerContent.h 60 virtual int height() { return m_height; }
71 int m_height; member in class:WebCore::LegacyPictureLayerContent
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextMetrics.h 39 float height() const { return m_height; }
72 float m_height; member in class:WebCore::SVGTextMetrics
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglPbufferSurface.cpp 26 m_height = val;
57 *val = 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

Completed in 489 milliseconds

1 2 3 4