Home
last modified time | relevance | path

Searched refs:m_bottom (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DLayoutBoxExtent.cpp45 return isHorizontalWritingMode(writingMode) ? m_bottom : m_right; in logicalBottom()
55 return isHorizontalWritingMode(writingMode) ? m_right : m_bottom; in logicalRight()
64 return m_bottom; in before()
78 return m_bottom; in after()
87 return m_bottom; in after()
94 return isLeftToRightDirection(direction) ? m_top : m_bottom; in start()
101 return isLeftToRightDirection(direction) ? m_bottom : m_top; in end()
111 m_bottom = value; in setBefore()
129 m_bottom = value; in setAfter()
142 m_bottom = value; in setAfter()
[all …]
DFloatBoxExtent.h42 , m_bottom(0) in FloatBoxExtent()
50 , m_bottom(bottom) in FloatBoxExtent()
61 float bottom() const { return m_bottom; } in bottom()
62 void setBottom(float bottom) { m_bottom = bottom; } in setBottom()
82 m_bottom = std::max(m_bottom, other.bottom()); in unite()
90 m_bottom = std::max(m_bottom, rect.maxY()); in unite()
97 float m_bottom; variable
DLayoutBoxExtent.h43 LayoutBoxExtent() : m_top(0), m_right(0), m_bottom(0), m_left(0) { } in LayoutBoxExtent()
45 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { } in LayoutBoxExtent()
49 inline LayoutUnit bottom() const { return m_bottom; } in bottom()
54 inline void setBottom(LayoutUnit value) { m_bottom = value; } in setBottom()
81 LayoutUnit m_bottom; variable
DIntRectExtent.h42 , m_bottom(0) in IntRectExtent()
50 , m_bottom(bottom) in IntRectExtent()
61 int bottom() const { return m_bottom; } in bottom()
62 void setBottom(int bottom) { m_bottom = bottom; } in setBottom()
81 int m_bottom; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBorderImageLengthBox.h48 , m_bottom(length) in BorderImageLengthBox()
56 , m_bottom(number) in BorderImageLengthBox()
65 , m_bottom(bottom) in BorderImageLengthBox()
72 const BorderImageLength& bottom() const { return m_bottom; } in 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()); in nonZero()
94 BorderImageLength m_bottom; variable
DBorderData.h47 …veImage) || m_right.nonZero(!haveImage) || m_top.nonZero(!haveImage) || m_bottom.nonZero(!haveImag… in hasBorder()
86 if (!m_image.hasImage() && (m_bottom.style() == BNONE || m_bottom.style() == BHIDDEN)) in borderBottomWidth()
88 return m_bottom.width(); in borderBottomWidth()
93 …_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom && m_image…
102 && m_bottom.visuallyEqual(o.m_bottom) in visuallyEqual()
118 const BorderValue& bottom() const { return m_bottom; } in bottom()
131 BorderValue m_bottom; variable
DBasicShapes.h246 const Length& bottom() const { return m_bottom; } in bottom()
256 void setBottom(const Length& bottom) { m_bottom = bottom; } in setBottom()
274 Length m_bottom; variable
DBasicShapes.cpp235 …std::max<float>(boundingBox.height() - top - floatValueForLength(m_bottom, boundingBox.height()), … in path()
258 && m_bottom == other.m_bottom in operator ==()
DRenderStyle.h980 void setBottom(const Length& v) { SET_VAR(surround, offset.m_bottom, v); } in setBottom()
1025 void resetBorderBottom() { SET_VAR(surround, border.m_bottom, BorderValue()); } in resetBorderBottom()
1078 void setBorderBottomWidth(unsigned v) { SET_VAR(surround, border.m_bottom.m_width, v); } in setBorderBottomWidth()
1079 void setBorderBottomStyle(EBorderStyle v) { SET_VAR(surround, border.m_bottom.m_style, v); } in setBorderBottomStyle()
1080 … setBorderBottomColor(const StyleColor& v) { SET_BORDERVALUE_COLOR(surround, border.m_bottom, v); } in setBorderBottomColor()
1206 void setMarginBottom(const Length& v) { SET_VAR(surround, margin.m_bottom, v); } in setMarginBottom()
1215 void setPaddingBottom(const Length& v) { SET_VAR(surround, padding.m_bottom, v); } in setPaddingBottom()
/external/chromium_org/third_party/WebKit/Source/platform/
DLengthBox.h42 , m_bottom(t) in LengthBox()
50 , m_bottom(Length(v, Fixed)) in LengthBox()
58 , m_bottom(b) in LengthBox()
66 , m_bottom(Length(b, Fixed)) in LengthBox()
73 const Length& bottom() const { return m_bottom; } in 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()); in nonZero()
102 Length m_bottom; variable
DLengthBox.cpp43 return isHorizontalWritingMode(writingMode) ? m_right : m_bottom; in logicalRight()
52 return m_bottom; in before()
66 return m_bottom; in after()
75 return m_bottom; in after()
82 return isLeftToRightDirection(direction) ? m_top : m_bottom; in start()
89 return isLeftToRightDirection(direction) ? m_bottom : m_top; in end()
/external/chromium_org/third_party/WebKit/Source/core/css/
DRect.h36 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } in bottom()
41 void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } in setBottom()
49 && compareCSSValuePtr(m_bottom, other.m_bottom); in equals()
59 , m_bottom(cloneFrom.m_bottom ? cloneFrom.m_bottom->cloneForCSSOM() : nullptr) in RectBase()
67 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; variable
DCSSBasicShapes.h159 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } in bottom()
169 void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } in setBottom()
212 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; variable
DCSSBasicShapes.cpp410 m_bottom ? m_bottom->cssText() : String(), in cssText()
430 && compareCSSValuePtr(m_bottom, other.m_bottom) in equals()
442 visitor->trace(m_bottom); in trace()
DRect.cpp16 visitor->trace(m_bottom); in DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED()
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
DAnimatableLengthBox.h48 const AnimatableValue* bottom() const { return m_bottom.get(); } in bottom()
60 , m_bottom(bottom) in AnimatableLengthBox()
69 RefPtrWillBeMember<AnimatableValue> m_bottom; variable
DAnimatableLengthBox.cpp60 visitor->trace(m_bottom); in trace()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DCSSToStyleMap.cpp512 box.m_bottom = Length(slices->bottom()->getDoubleValue(), Percent); in mapNinePieceImageSlice()
514 … box.m_bottom = Length((int)slices->bottom()->getFloatValue(CSSPrimitiveValue::CSS_NUMBER), Fixed); in mapNinePieceImageSlice()
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DCSSPropertyParser.cpp5886 else if (!m_bottom) in commitNumber()
5887 m_bottom = val; in commitNumber()
5905 m_bottom = m_top; in commitBorderImageSlice()
5908 if (!m_bottom) { in commitBorderImageSlice()
5909 m_bottom = m_top; in commitBorderImageSlice()
5919 quad->setBottom(m_bottom); in commitBorderImageSlice()
5935 RefPtrWillBeMember<CSSPrimitiveValue> m_bottom; member in blink::BorderImageSliceParseContext
6001 else if (!m_bottom) in commitNumber()
6002 m_bottom = val; in commitNumber()
6020 m_bottom = m_top; in commitBorderImageQuad()
[all …]