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

1 2 3 4

  /external/webkit/Source/WebCore/html/
TextMetrics.h 38 float width() const { return m_width; }
39 void setWidth(float w) { m_width = w; }
43 : m_width(0)
46 float m_width; member in class:WebCore::TextMetrics
  /external/webkit/Source/WebCore/platform/
LengthSize.h 35 : m_width(width)
42 return m_width == o.m_width && m_height == o.m_height;
45 void setWidth(Length width) { m_width = width; }
46 Length width() const { return m_width; }
52 Length m_width; member in struct:WebCore::LengthSize
  /external/webkit/Source/WebCore/platform/graphics/win/
IntSizeWin.cpp 34 : m_width(s.cx)
41 SIZE s = {m_width, m_height};
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
MemoryFlyoutPreferences.java 22 private int m_width; field in class:MemoryFlyoutPreferences
32 m_width = width;
49 return m_width;
61 m_width = width;
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TextureInfo.cpp 41 m_width = 0;
48 return otherTexture->m_width == m_width
55 m_width = sourceTexture->m_width;
  /external/webkit/Source/WebCore/rendering/style/
BorderValue.h 37 : m_width(3)
59 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color;
68 unsigned short width() const { return m_width; }
73 unsigned m_width : 12;
OutlineValue.h 43 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_offset == o.m_offset && m_isAuto == o.m_isAuto;
StyleMultiColData.cpp 30 : m_width(0)
45 , m_width(o.m_width)
61 return m_width == o.m_width && m_count == o.m_count && m_gap == o.m_gap
StyleBoxData.cpp 43 , m_width(o.m_width)
57 return m_width == o.m_width
  /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 35 : m_width(s.x)
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) { }
67 int width() const { return m_width; }
70 void setWidth(int width) { m_width = width; }
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); }
80 m_width += width;
86 m_width = static_cast<int>(static_cast<float>(m_width) * 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) { }
58 float width() const { return m_width; }
61 void setWidth(float width) { m_width = width; }
64 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
70 m_width *= scale;
76 return FloatSize(m_width > other.m_width ? m_width : other.m_width
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 37 : m_width(size.IntegerWidth())
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntSizeQt.cpp 37 : m_width(r.width())
  /external/webkit/Source/WebCore/rendering/
FixedTableLayout.h 42 Vector<Length> m_width; member in class:WebCore::FixedTableLayout
FixedTableLayout.cpp 87 m_width.resize(nEffCols);
88 m_width.fill(Length(Auto));
110 m_width.append(Length());
116 m_width.append(Length());
121 m_width[currentEffectiveColumn] = w;
122 m_width[currentEffectiveColumn] *= spanInCurrentEffectiveColumn;
170 if (m_width[cCol + i].isAuto() && w.type() != Auto) {
171 m_width[cCol + i] = w;
172 m_width[cCol + i] *= eSpan / span;
246 if (m_width[i].isFixed())
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderbuffer.h 51 m_width = width;
54 GC3Dsizei getWidth() const { return m_width; }
77 GC3Dsizei m_width, m_height; member in class:WebCore::WebGLRenderbuffer
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextMetrics.h 38 float width() const { return m_width; }
65 void setWidth(float width) { m_width = width; }
71 float m_width; member in class:WebCore::SVGTextMetrics
  /external/webkit/Source/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 34 : m_width(size.cx)

Completed in 219 milliseconds

1 2 3 4