Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/
DLengthBox.h37 , m_bottom(t) in LengthBox()
45 , m_bottom(Length(v, Fixed)) in LengthBox()
53 , m_bottom(b) in LengthBox()
61 , m_bottom(Length(b, Fixed)) in LengthBox()
68 Length bottom() const { return m_bottom; } in bottom()
72 … return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom;
82 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero()); in nonZero()
88 Length m_bottom; member
/external/webkit/Source/WebCore/rendering/style/
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…
105 const BorderValue& bottom() const { return m_bottom; } in bottom()
118 BorderValue m_bottom; variable
DRenderStyle.h802 void setBottom(Length v) { SET_VAR(surround, offset.m_bottom, v) } in setBottom()
822 region.offset.m_bottom = b; in setDashboardRegion()
834 void resetBorderBottom() { SET_VAR(surround, border.m_bottom, BorderValue()) } in resetBorderBottom()
886 void setBorderBottomWidth(unsigned short v) { SET_VAR(surround, border.m_bottom.m_width, v) } in setBorderBottomWidth()
887 void setBorderBottomStyle(EBorderStyle v) { SET_VAR(surround, border.m_bottom.m_style, v) } in setBorderBottomStyle()
888 void setBorderBottomColor(const Color& v) { SET_VAR(surround, border.m_bottom.m_color, v) } in setBorderBottomColor()
909 void setClipBottom(Length v) { SET_VAR(visual, clip.m_bottom, v) } in setClipBottom()
989 void setMarginBottom(Length v) { SET_VAR(surround, margin.m_bottom, v) } in setMarginBottom()
998 void setPaddingBottom(Length v) { SET_VAR(surround, padding.m_bottom, v) } in setPaddingBottom()
DRenderStyle.cpp590 data->clip.m_bottom = bottom; in setClip()
928 region.offset.m_bottom = Length(); in noneDashboardRegions()
/external/webkit/Tools/DumpRenderTree/chromium/
DWebThemeControlDRTWin.cpp106 , m_bottom(m_irect.fBottom) in WebThemeControlDRTWin()
241 for (int i = m_top + readOnlyLineOffset; i < m_bottom; i += readOnlyLineOffset) in markState()
261 triangle(m_right, m_bottom, in markState()
262 m_right - triangleSize, m_bottom, in markState()
263 m_right, m_bottom - triangleSize, m_edgeColor); in markState()
268 triangle(m_left, m_bottom, in markState()
269 m_left, m_bottom - triangleSize, in markState()
270 m_left + triangleSize, m_bottom, m_edgeColor); in markState()
401 m_left + longOffset, m_bottom - gripShortIndent, m_fgColor); in draw()
403 m_right - longOffset, m_bottom - gripShortIndent, m_fgColor); in draw()
[all …]
DWebThemeControlDRTWin.h196 const int m_bottom; variable
/external/webkit/Source/WebCore/css/
DRect.h33 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } in bottom()
38 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } in setBottom()
48 RefPtr<CSSPrimitiveValue> m_bottom; variable
DCSSParser.cpp4780 else if (!m_bottom) in commitNumber()
4781 m_bottom = val; in commitNumber()
4820m_bottom = m_primitiveValueCache->createValue(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTyp… in commitBorderImage()
4823 if (!m_bottom) { in commitBorderImage()
4824m_bottom = m_primitiveValueCache->createValue(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTyp… in commitBorderImage()
4834 rect->setBottom(m_bottom); in commitBorderImage()
4878 RefPtr<CSSPrimitiveValue> m_bottom; member
DCSSStyleSelector.cpp6681 l.m_bottom = Length(r->bottom()->getDoubleValue(), Percent); in mapNinePieceImage()
6683 l.m_bottom = Length((int)r->bottom()->getFloatValue(CSSPrimitiveValue::CSS_NUMBER), Fixed); in mapNinePieceImage()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1040039 startY -> m_top, endY -> m_bottom, left -> m_left, width -> m_width,