Home
last modified time | relevance | path

Searched refs:m_top (Results 1 – 11 of 11) sorted by relevance

/external/webkit/WebCore/platform/
DLengthBox.h36 , m_top(t) in LengthBox()
44 , m_top(Length(v, Fixed)) in LengthBox()
52 , m_top(Length(t, Fixed)) in LengthBox()
59 Length top() const { return m_top; } in top()
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()
79 Length m_top; member
/external/webkit/JavaScriptCore/runtime/
DMarkStack.h101 : m_top(0) in MarkStackArray()
126 if (m_top == m_capacity) in append()
128 m_data[m_top++] = v; in append()
133 ASSERT(m_top); in removeLast()
134 return m_data[--m_top]; in removeLast()
139 ASSERT(m_top); in last()
140 return m_data[m_top - 1]; in last()
145 return m_top == 0; in isEmpty()
148 inline size_t size() { return m_top; } in size()
169 size_t m_top;
/external/webkit/WebCore/css/
DRect.h31 CSSPrimitiveValue* top() const { return m_top.get(); } in top()
36 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; } in setTop()
46 RefPtr<CSSPrimitiveValue> m_top;
DCSSParser.cpp3960 if (!m_top) in commitNumber()
3961 m_top = val; in commitNumber()
4003 …m_right = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top->… in commitBorderImage()
4004 …m_bottom = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top-… in commitBorderImage()
4005 …m_left = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top->p… in commitBorderImage()
4008 …m_bottom = CSSPrimitiveValue::create(m_top->getDoubleValue(), (CSSPrimitiveValue::UnitTypes)m_top-… in commitBorderImage()
4016 rect->setTop(m_top); in commitBorderImage()
4058 RefPtr<CSSPrimitiveValue> m_top; member
4110 context.m_top = CSSPrimitiveValue::create(0, CSSPrimitiveValue::CSS_NUMBER); in parseBorderImage()
DCSSStyleSelector.cpp5767 l.m_top = Length(r->top()->getDoubleValue(), Percent); in mapNinePieceImage()
5769 l.m_top = Length(r->top()->getIntValue(CSSPrimitiveValue::CSS_NUMBER), Fixed); in mapNinePieceImage()
/external/webkit/WebCore/rendering/
DRenderBlock.cpp868 …mChild(r->m_renderer, IntSize(r->m_left + r->m_renderer->marginLeft(), r->m_top + r->m_renderer->m… in addOverflowFromFloats()
1822 int currentTY = ty + r->m_top - r->m_renderer->y() + r->m_renderer->marginTop(); in paintFloats()
2037 ty + r->m_top + r->m_renderer->marginTop(), in fillSelectionGaps()
2368 newObj->m_top = -1; in insertFloatingObject()
2401 if (!f || f->m_top != -1) in positionNewFloats()
2408 while (lastFloat && lastFloat->m_top == -1) { in positionNewFloats()
2417 y = max(lastFloat->m_top, y); in positionNewFloats()
2467 f->m_top = y; in positionNewFloats()
2468 f->m_bottom = f->m_top + _height; in positionNewFloats()
2575 if (r->m_top <= y && r->m_bottom > y && in leftRelOffset()
[all …]
DRenderBlock.h401 , m_top(0) in FloatingObject()
414 int m_top; member
DRenderBlockLineLayout.cpp894 … if (floats[floatIndex].rect != IntRect(f->m_left, f->m_top, f->m_width, f->m_bottom - f->m_top)) in layoutInlineChildren()
/external/webkit/WebCore/rendering/style/
DRenderStyle.h723 void setTop(Length v) { SET_VAR(surround, offset.m_top, v) } in setTop()
742 region.offset.m_top = t; in setDashboardRegion()
822 void setClipTop(Length v) { SET_VAR(visual, clip.m_top, v) } in setClipTop()
901 void setMarginTop(Length v) { SET_VAR(surround, margin.m_top, v) } in setMarginTop()
908 void setPaddingTop(Length v) { SET_VAR(surround, padding.m_top, v) } in setPaddingTop()
DRenderStyle.cpp533 data->clip.m_top = top; in setClip()
810 region.offset.m_top = Length(); in noneDashboardRegions()
/external/webkit/WebCore/
DChangeLog-2008-08-1040039 startY -> m_top, endY -> m_bottom, left -> m_left, width -> m_width,