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

1 2

  /external/webkit/WebCore/rendering/
SVGInlineFlowBox.h 36 , m_height(0)
40 virtual int virtualHeight() const { return m_height; }
41 void setHeight(int h) { m_height = h; }
48 int m_height; member in class:WebCore::SVGInlineFlowBox
EllipsisBox.h 35 , m_height(height)
48 virtual int height() const { return m_height; }
52 int m_height; member in class:WebCore::EllipsisBox
SVGRootInlineBox.h 51 , m_height(0)
58 virtual int virtualHeight() const { return m_height; }
59 void setHeight(int h) { m_height = h; }
92 int m_height; member in class:WebCore::SVGRootInlineBox
SVGInlineTextBox.h 55 virtual int virtualHeight() const { return m_height; }
56 void setHeight(int h) { m_height = h; }
90 int m_height; member in class:WebCore::SVGInlineTextBox
RenderMarquee.h 89 Length m_height; member in class:WebCore::RenderMarquee
  /external/webkit/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/WebCore/platform/graphics/win/
IntSizeWin.cpp 35 , m_height(s.cy)
41 SIZE s = {m_width, m_height};
QTMovieWin.cpp 117 int m_height; member in class:QTMovieWinPrivate
151 , m_height(0)
349 if (!m_height || !m_width)
356 else if (m_gWorld && (m_width > m_gWorldWidth || m_height > m_gWorldHeight)) {
370 m_gWorldHeight = max(cGWorldMinHeight, m_height);
384 bounds.bottom = m_height;
411 if (m_width == width && m_height == height)
414 m_height = height;
438 bounds.bottom = m_height;
637 height = m_private->m_height;
    [all...]
  /external/webkit/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/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/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/WebCore/platform/graphics/
FloatSize.h 53 FloatSize() : m_width(0), m_height(0) { }
54 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; }
70 m_height > other.m_height ? m_height : other.m_height);
76 m_height < other.m_height ? m_height : other.m_height)
91 float m_width, m_height; member in class:WebCore::FloatSize
    [all...]
IntSize.h 66 IntSize() : m_width(0), m_height(0) { }
67 IntSize(int width, int height) : m_width(width), m_height(height) { }
70 int height() const { return m_height; }
73 void setHeight(int height) { m_height = height; }
75 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
76 bool isZero() const { return !m_width && !m_height; }
81 m_height += height;
87 m_height = static_cast<int>(static_cast<float>(m_height) * scale);
93 m_height > other.m_height ? m_height : other.m_height)
143 int m_width, m_height; member in class:WebCore::IntSize
    [all...]
FloatSize.cpp 35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
  /external/webkit/WebCore/platform/graphics/haiku/
IntSizeHaiku.cpp 38 , m_height(size.IntegerHeight())
  /external/webkit/WebCore/platform/graphics/qt/
IntSizeQt.cpp 38 , m_height(r.height())
  /external/webkit/WebCore/html/
ImageData.h 43 unsigned height() const { return m_height; }
49 unsigned m_height; member in class:WebCore::ImageData
ImageData.cpp 41 , m_height(height)
  /external/webkit/WebKit/android/
RenderSkinAndroid.h 83 virtual void setDim(int width, int height) { m_width = width; m_height = height; }
86 int m_height; member in class:WebCore::RenderSkinAndroid
RenderSkinAndroid.cpp 42 : m_height(0)
  /external/webkit/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 35 , m_height(size.cy)
  /external/webkit/WebCore/svg/
PatternAttributes.h 31 , m_height()
49 SVGLength height() const { return m_height; }
58 void setHeight(const SVGLength& value) { m_height = value; m_heightSet = true; }
78 SVGLength m_height; member in struct:WebCore::PatternAttributes

Completed in 192 milliseconds

1 2