Searched defs:m_bottom (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DLengthBox.h42 , m_bottom(t)
50 , m_bottom(Length(v, Fixed))
58 , m_bottom(b)
66 , m_bottom(Length(b, Fixed))
73 Length bottom() const { return m_bottom; }
85 return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom;
95 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
101 Length m_bottom; member in struct:WebCore::LengthBox
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DLayoutBoxExtent.h42 LayoutBoxExtent() : m_top(0), m_right(0), m_bottom(0), m_left(0) { }
44 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
48 inline LayoutUnit bottom() const { return m_bottom; }
53 inline void setBottom(LayoutUnit value) { m_bottom = value; }
80 LayoutUnit m_bottom; member in class:WebCore::LayoutBoxExtent
H A DIntRectExtent.h42 , m_bottom(0)
50 , m_bottom(bottom)
61 int bottom() const { return m_bottom; }
62 void setBottom(int bottom) { m_bottom = bottom; }
81 int m_bottom; member in class:WebCore::IntRectExtent
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRect.h34 CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
39 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
47 && compareCSSValuePtr(m_bottom, other.m_bottom);
54 || m_bottom->hasVariableReference()
63 , m_bottom(cloneFrom.m_bottom ? cloneFrom.m_bottom->cloneForCSSOM() : 0)
73 RefPtr<CSSPrimitiveValue> m_bottom; member in class:WebCore::RectBase
H A DCSSBasicShapes.h107 CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
114 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
131 RefPtr<CSSPrimitiveValue> m_bottom; member in class:WebCore::CSSBasicShapeInsetRectangle
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderData.h47 return m_left.nonZero(!haveImage) || m_right.nonZero(!haveImage) || m_top.nonZero(!haveImage) || m_bottom.nonZero(!haveImage);
86 if (!m_image.hasImage() && (m_bottom.style() == BNONE || m_bottom.style() == BHIDDEN))
88 return m_bottom.width();
93 return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom && m_image == o.m_image
105 const BorderValue& bottom() const { return m_bottom; }
118 BorderValue m_bottom; member in class:WebCore::BorderData
H A DBasicShapes.h191 Length bottom() const { return m_bottom; }
198 void setBottom(Length bottom) { m_bottom = bottom; }
220 Length m_bottom; member in class:WebCore::BasicShapeInsetRectangle
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestThemeControlWin.h193 const int m_bottom; member in class:WebTestRunner::WebTestThemeControlWin

Completed in 85 milliseconds