Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/
DLengthBox.h37 , m_bottom(t) in LengthBox()
45 , m_bottom(Length(v, Fixed)) in LengthBox()
53 , m_bottom(Length(b, Fixed)) in LengthBox()
60 Length bottom() const { return m_bottom; } in bottom()
64 … return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom;
74 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero()); in nonZero()
80 Length m_bottom; member
/external/webkit/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.cpp3642 else if (!m_bottom) in commitNumber()
3643 m_bottom = val; in commitNumber()
3679m_bottom = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top-… in commitBorderImage()
3682 if (!m_bottom) { in commitBorderImage()
3683m_bottom = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top-… in commitBorderImage()
3693 rect->setBottom(m_bottom); in commitBorderImage()
3735 RefPtr<CSSPrimitiveValue> m_bottom; member
DCSSStyleSelector.cpp5443 l.m_bottom = Length(r->bottom()->getDoubleValue(), Percent); in mapNinePieceImage()
5445 l.m_bottom = Length((int)r->bottom()->getFloatValue(CSSPrimitiveValue::CSS_NUMBER), Fixed); in mapNinePieceImage()
/external/webkit/WebCore/rendering/
DRenderBlock.cpp1473 …if (r->m_bottom > height() && (paintAllDescendants && r->m_renderer->isDescendantOf(this) || r->m_… in repaintOverhangingFloats()
2285 newObj->m_bottom = -1; in insertFloatingObject()
2301 markLinesDirtyInVerticalRange(0, it.current()->m_bottom); in removeFloatingObject()
2384 f->m_bottom = f->m_top + _height; in positionNewFloats()
2489 if (r->m_top <= y && r->m_bottom > y && in leftRelOffset()
2493 if ( heightRemaining ) *heightRemaining = r->m_bottom - y; in leftRelOffset()
2526 if (r->m_top <= y && r->m_bottom > y && in rightRelOffset()
2530 if ( heightRemaining ) *heightRemaining = r->m_bottom - y; in rightRelOffset()
2561 if (r->m_bottom > height) in nextFloatBottomBelow()
2562 bottom = min(r->m_bottom, bottom); in nextFloatBottomBelow()
[all …]
Dbidi.cpp1120 if (f->m_bottom > lastHeight) in layoutInlineChildren()
1124 … if (floats[floatIndex].rect != IntRect(f->m_left, f->m_top, f->m_width, f->m_bottom - f->m_top)) in layoutInlineChildren()
1183 if (f->m_bottom > lastHeight) in layoutInlineChildren()
1384 if (f->m_bottom >= top && f->m_bottom < bottom) in matchedEndLine()
1418 if (f->m_bottom >= top && f->m_bottom < bottom) in matchedEndLine()
DRenderBlock.h353 , m_bottom(0) in FloatingObject()
366 int m_bottom; member
/external/webkit/WebCore/rendering/style/
DRenderStyle.h668 void setBottom(Length v) { SET_VAR(surround, offset.m_bottom, v) } in setBottom()
688 region.offset.m_bottom = b; in setDashboardRegion()
760 void setClipBottom(Length v) { SET_VAR(visual, clip.m_bottom, v) } in setClipBottom()
836 void setMarginBottom(Length v) { SET_VAR(surround, margin.m_bottom, v) } in setMarginBottom()
843 void setPaddingBottom(Length v) { SET_VAR(surround, padding.m_bottom, v) } in setPaddingBottom()
DRenderStyle.cpp481 data->clip.m_bottom = bottom; in setClip()
739 region.offset.m_bottom = Length(); in noneDashboardRegions()
/external/webkit/WebCore/
DChangeLog-2008-08-1040039 startY -> m_top, endY -> m_bottom, left -> m_left, width -> m_width,