HomeSort by relevance Sort by last modified time
    Searched defs:m_bottom (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableLengthBox.h 48 const AnimatableValue* bottom() const { return m_bottom.get(); }
60 , m_bottom(bottom)
69 RefPtrWillBeMember<AnimatableValue> m_bottom; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderImageLengthBox.h 48 , m_bottom(length)
56 , m_bottom(number)
65 , m_bottom(bottom)
72 const BorderImageLength& bottom() const { return m_bottom; }
77 && m_top == other.m_top && m_bottom == other.m_bottom;
87 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
94 BorderImageLength m_bottom; member in class:blink::BorderImageLengthBox
BorderData.h 47 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
102 && m_bottom.visuallyEqual(o.m_bottom)
118 const BorderValue& bottom() const { return m_bottom; }
131 BorderValue m_bottom; member in class:blink::BorderData
    [all...]
BasicShapes.h 246 const Length& bottom() const { return m_bottom; }
256 void setBottom(const Length& bottom) { m_bottom = bottom; }
274 Length m_bottom; member in class:blink::BasicShapeInset
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.h 42 , m_bottom(t)
50 , m_bottom(Length(v, Fixed))
58 , m_bottom(b)
66 , m_bottom(Length(b, Fixed))
73 const 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());
102 Length m_bottom; member in class:blink::LengthBox
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutBoxExtent.h 43 LayoutBoxExtent() : m_top(0), m_right(0), m_bottom(0), m_left(0) { }
45 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
49 inline LayoutUnit bottom() const { return m_bottom; }
54 inline void setBottom(LayoutUnit value) { m_bottom = value; }
81 LayoutUnit m_bottom; member in class:blink::LayoutBoxExtent
IntRectExtent.h 42 , 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:blink::IntRectExtent
FloatBoxExtent.h 42 , m_bottom(0)
50 , m_bottom(bottom)
61 float bottom() const { return m_bottom; }
62 void setBottom(float bottom) { m_bottom = bottom; }
82 m_bottom = std::max(m_bottom, other.bottom());
90 m_bottom = std::max(m_bottom, rect.maxY());
97 float m_bottom; member in class:blink::FloatBoxExtent
  /external/chromium_org/third_party/WebKit/Source/core/css/
Rect.h 36 CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
41 void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
49 && compareCSSValuePtr(m_bottom, other.m_bottom);
59 , m_bottom(cloneFrom.m_bottom ? cloneFrom.m_bottom->cloneForCSSOM() : nullptr)
67 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; member in class:blink::RectBase
CSSBasicShapes.h 159 CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
169 void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
212 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; member in class:blink::CSSBasicShapeInset
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.cpp 5935 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; member in class:blink::BorderImageSliceParseContext
6049 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; member in class:blink::BorderImageQuadParseContext
    [all...]

Completed in 352 milliseconds