HomeSort by relevance Sort by last modified time
    Searched full:m_height (Results 1 - 25 of 91) 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/
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...]
  /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;
  /sdk/emulator/opengl/host/libs/Translator/EGL/
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
EglPbufferSurface.cpp 26 m_height = val;
57 *val = m_height;
  /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...]
grfmt_tiff.cpp 151 m_height = height;
172 if( m_tif && m_width && m_height )
189 tile_height0 = m_height;
193 for( y = 0; y < m_height; y += tile_height0, data += step*tile_height0 )
197 if( y + tile_height > m_height )
198 tile_height = m_height - y;
370 m_height = -1;
415 m_height = value;
499 m_rows_per_strip = m_height;
501 if( m_width > 0 && m_height > 0 && m_strips > 0 &
    [all...]
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.h 35 , m_height(height)
48 virtual int height() const { return m_height; }
52 int m_height; member in class:WebCore::EllipsisBox
  /external/webkit/Source/WebCore/rendering/style/
StyleBoxData.cpp 44 , m_height(o.m_height)
58 && m_height == o.m_height
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextMetrics.cpp 32 , m_height(0)
51 m_height = scaledFont.fontMetrics().floatHeight() / scalingFactor;
63 && m_height == other.m_height
SVGTextMetrics.h 39 float height() const { return m_height; }
72 float m_height; member in class:WebCore::SVGTextMetrics
  /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/win/
IntSizeWin.cpp 35 , m_height(s.cy)
41 SIZE s = {m_width, m_height};
QTMovieGWorld.cpp 88 int m_height; member in class:QTMovieGWorldPrivate
113 , m_height(0)
178 if (!m_height || !m_width)
185 else if (m_gWorld && (m_width > m_gWorldWidth || m_height > m_gWorldHeight)) {
199 m_gWorldHeight = max(cGWorldMinHeight, m_height);
211 bounds.bottom = m_height;
236 if (m_width == width && m_height == height)
239 m_height = height;
263 bounds.bottom = m_height;
347 height = m_private->m_height;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntSizeWx.cpp 36 , m_height(s.y)
42 return wxSize(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
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/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
  /external/webkit/Source/WebCore/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
  /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);

Completed in 1371 milliseconds

1 2 3 4