Searched refs:m_bottom (Results 1 – 10 of 10) sorted by relevance
/external/webkit/WebCore/platform/ |
D | LengthBox.h | 37 , 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/ |
D | Rect.h | 33 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
|
D | CSSParser.cpp | 3642 else if (!m_bottom) in commitNumber() 3643 m_bottom = val; in commitNumber() 3679 …m_bottom = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top-… in commitBorderImage() 3682 if (!m_bottom) { in commitBorderImage() 3683 …m_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
|
D | CSSStyleSelector.cpp | 5443 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/ |
D | RenderBlock.cpp | 1473 …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 …]
|
D | bidi.cpp | 1120 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()
|
D | RenderBlock.h | 353 , m_bottom(0) in FloatingObject() 366 int m_bottom; member
|
/external/webkit/WebCore/rendering/style/ |
D | RenderStyle.h | 668 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()
|
D | RenderStyle.cpp | 481 data->clip.m_bottom = bottom; in setClip() 739 region.offset.m_bottom = Length(); in noneDashboardRegions()
|
/external/webkit/WebCore/ |
D | ChangeLog-2008-08-10 | 40039 startY -> m_top, endY -> m_bottom, left -> m_left, width -> m_width,
|