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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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 44 LayoutSize() : m_width(0), m_height(0) { }
45 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
46 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
48 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
51 LayoutUnit height() const { return m_height; }
54 void setHeight(LayoutUnit height) { m_height = height; }
56 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
57 bool isZero() const { return !m_width && !m_height; }
59 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
64 m_height += height
116 LayoutUnit m_width, m_height; member in class:WebCore::LayoutSize
    [all...]
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...]
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);
  /external/chromium_org/third_party/WebKit/Source/core/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
  /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/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.h 36 , m_height(height)
49 virtual int height() const { return m_height; }
55 int m_height; member in class:WebCore::FINAL
  /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; }
77 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/style/
StyleBoxData.cpp 53 , m_height(o.m_height)
69 && m_height == o.m_height
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/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);
FloatSizeCG.cpp 34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 return CGSizeMake(m_width, m_height);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
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);
FloatSizeMac.mm 34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
40 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
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/html/canvas/
WebGLRenderbuffer.h 51 m_height = height;
54 GC3Dsizei getHeight() const { return m_height; }
77 GC3Dsizei m_width, m_height; member in class:WebCore::WebGLRenderbuffer
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 44 m_height = master.winfo_height()
49 m_height = master.winfo_screenheight()
54 y = m_y + (m_height - w_height) * rely
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 44 m_height = master.winfo_height()
49 m_height = master.winfo_screenheight()
54 y = m_y + (m_height - w_height) * rely

Completed in 425 milliseconds

1 2 3 4