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

1 2 3

  /external/webkit/WebCore/html/
TextMetrics.h 37 unsigned width() const { return m_width; }
38 void setWidth(float w) { m_width = w; }
42 : m_width(0)
45 float m_width; member in class:WebCore::TextMetrics
ImageData.h 42 unsigned width() const { return m_width; }
48 unsigned m_width; member in class:WebCore::ImageData
ImageData.cpp 40 : m_width(width)
  /external/webkit/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/WebCore/platform/graphics/win/
IntSizeWin.cpp 34 : m_width(s.cx)
41 SIZE s = {m_width, m_height};
  /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 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/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) { }
59 float width() const { return m_width; }
62 void setWidth(float width) { m_width = width; }
65 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
69 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
75 return FloatSize(m_width < other.m_width ? m_width : other.m_width
91 float m_width, m_height; member in class:WebCore::FloatSize
    [all...]
Pen.cpp 31 Pen::Pen(const Color &color, unsigned width, PenStyle style) : m_style(style), m_width(width), m_color(color)
42 return m_width;
57 m_width = width;
67 return (m_width == compareTo.m_width) &&
IntSize.h 66 IntSize() : m_width(0), m_height(0) { }
67 IntSize(int width, int height) : m_width(width), m_height(height) { }
69 int width() const { return m_width; }
72 void setWidth(int width) { m_width = width; }
75 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
76 bool isZero() const { return !m_width && !m_height; }
80 m_width += width;
86 m_width = static_cast<int>(static_cast<float>(m_width) * scale);
92 return IntSize(m_width > other.m_width ? m_width : other.m_width
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())
Pen.h 66 unsigned m_width; member in class:WebCore::Pen
  /external/webkit/WebCore/platform/graphics/haiku/
IntSizeHaiku.cpp 37 : m_width(size.IntegerWidth())
  /external/webkit/WebCore/platform/graphics/qt/
IntSizeQt.cpp 37 : m_width(r.width())
  /external/webkit/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));
111 m_width.append(Length());
117 m_width.append(Length());
122 m_width[currentEffectiveColumn].setRawValue(w.type(), w.rawValue() * spanInCurrentEffectiveColumn);
173 if (m_width[cCol + i].isAuto() && w.type() != Auto) {
174 m_width[cCol + i].setRawValue(w.type(), w.rawValue() * eSpan / span);
249 if (m_width[i].isFixed()) {
250 calcWidth[i] = m_width[i].value();
252 } else if (m_width[i].isPercent())
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleMultiColData.cpp 30 : m_width(0)
44 , m_width(o.m_width)
59 return m_width == o.m_width && m_count == o.m_count && m_gap == o.m_gap &&
  /external/webkit/WebKit/android/
RenderSkinAndroid.h 83 virtual void setDim(int width, int height) { m_width = width; m_height = height; }
87 int m_width; member in class:WebCore::RenderSkinAndroid
  /external/webkit/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 34 : m_width(size.cx)
  /external/webkit/WebCore/svg/
PatternAttributes.h 30 , m_width()
48 SVGLength width() const { return m_width; }
57 void setWidth(const SVGLength& value) { m_width = value; m_widthSet = true; }
77 SVGLength m_width; member in struct:WebCore::PatternAttributes
  /external/webkit/WebCore/platform/graphics/wince/
FontWince.cpp 81 float m_width; member in class:WebCore::TextRunComponent
97 m_width = it.m_runWidthSoFar;
105 m_width = s * font.primaryFont()->widthForGlyph(' ');
134 offset += add + letterSpacing + components->last().m_width;
148 offset += components->last().m_width + letterSpacing;
156 offset += wordSpacing + add + components->last().m_width + letterSpacing;
164 offset += components->last().m_width + letterSpacing;
172 offset += components->last().m_width;
183 offset += components->last().m_width;
192 offset += add + components->last().m_width;
    [all...]

Completed in 425 milliseconds

1 2 3