Searched refs:m_top (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMarkStackInlines.h41 size_t result = m_top++;
42 ASSERT(result == m_segments.head()->m_top++);
48 size_t result = --m_top;
49 ASSERT(result == --m_segments.head()->m_top);
55 ASSERT(m_segments.head()->m_top == s_segmentCapacity);
56 m_top = s_segmentCapacity;
61 ASSERT(!m_segments.head()->m_top);
62 m_top = 0;
67 ASSERT(m_top == m_segments.head()->m_top);
[all...]
H A DMarkStack.cpp51 , m_top(0)
66 ASSERT(m_segments.head()->m_top == s_segmentCapacity);
72 nextSegment->m_top = 0;
102 size_t cellsToDonate = m_top / 2; // Round down to donate 0 / 1 cells.
104 ASSERT(m_top);
150 ASSERT(other.m_segments.head()->m_top == s_segmentCapacity);
H A DMarkStack.h67 , m_top(0)
82 size_t m_top; member in class:JSC::MarkStackSegment
122 size_t m_top; member in class:JSC::MarkStackArray
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DLengthBox.h41 , m_top(t)
49 , m_top(Length(v, Fixed))
57 , m_top(t)
65 , m_top(Length(t, Fixed))
72 Length top() const { return m_top; }
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());
100 Length m_top; member in struct:WebCore::LengthBox
H A DLengthBox.cpp38 return isHorizontalWritingMode(writingMode) ? m_left : m_top;
50 return m_top;
59 return m_top;
68 return m_top;
82 return isLeftToRightDirection(direction) ? m_top : m_bottom;
89 return isLeftToRightDirection(direction) ? m_bottom : m_top;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DLayoutBoxExtent.cpp38 return isHorizontalWritingMode(writingMode) ? m_top : m_left;
48 return isHorizontalWritingMode(writingMode) ? m_left : m_top;
60 return m_top;
69 return m_top;
78 return m_top;
92 return isLeftToRightDirection(direction) ? m_top : m_bottom;
99 return isLeftToRightDirection(direction) ? m_bottom : m_top;
106 m_top = value;
119 m_top = value;
130 m_top
[all...]
H A DLayoutBoxExtent.h42 LayoutBoxExtent() : m_top(0), m_right(0), m_bottom(0), m_left(0) { }
44 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
46 inline LayoutUnit top() const { return m_top; }
51 inline void setTop(LayoutUnit value) { m_top = value; }
78 LayoutUnit m_top; member in class:WebCore::LayoutBoxExtent
H A DIntRectExtent.h42 : m_top(0)
50 : m_top(top)
57 int top() const { return m_top; }
58 void setTop(int top) { m_top = top; }
81 int m_top; member in class:WebCore::IntRectExtent
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DBorderData.h47 return m_left.nonZero(!haveImage) || m_right.nonZero(!haveImage) || m_top.nonZero(!haveImage) || m_bottom.nonZero(!haveImage);
79 if (!m_image.hasImage() && (m_top.style() == BNONE || m_top.style() == BHIDDEN))
81 return m_top.width();
93 return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom && m_image == o.m_image
104 const BorderValue& top() const { return m_top; }
117 BorderValue m_top; member in class:WebCore::BorderData
H A DBasicShapes.h189 Length top() const { return m_top; }
196 void setTop(Length top) { m_top = top; }
219 Length m_top; member in class:WebCore::BasicShapeInsetRectangle
H A DBasicShapes.cpp186 float top = floatValueForLength(m_top, boundingBox.height());
207 result->setTop(m_top.blend(o->top(), progress));
H A DRenderStyle.h994 void setTop(Length v) { SET_VAR(surround, offset.m_top, v); }
1031 region.offset.m_top = t;
1048 void resetBorderTop() { SET_VAR(surround, border.m_top, BorderValue()); }
1101 void setBorderTopWidth(unsigned v) { SET_VAR(surround, border.m_top.m_width, v); }
1102 void setBorderTopStyle(EBorderStyle v) { SET_VAR(surround, border.m_top.m_style, v); }
1103 void setBorderTopColor(const Color& v) { SET_BORDERVALUE_COLOR(surround, border.m_top, v); }
1122 void setClipTop(Length v) { SET_VAR(visual, clip.m_top, v); }
1229 void setMarginTop(Length v) { SET_VAR(surround, margin.m_top, v); }
1238 void setPaddingTop(Length v) { SET_VAR(surround, padding.m_top, v); }
H A DRenderStyle.cpp814 data->clip.m_top = top;
1236 region.offset.m_top = Length();
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DRect.h32 CSSPrimitiveValue* top() const { return m_top.get(); }
37 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; }
44 return compareCSSValuePtr(m_top, other.m_top)
53 return m_top->hasVariableReference()
63 : m_top(cloneFrom.m_top ? cloneFrom.m_top->cloneForCSSOM() : 0)
73 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::RectBase
H A DCSSBasicShapes.h109 CSSPrimitiveValue* top() const { return m_top.get(); }
116 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; }
136 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::CSSBasicShapeInsetRectangle
H A DCSSBasicShapes.cpp301 return buildInsetRectangleString(m_top->cssText(),
315 return compareCSSValuePtr(m_top, other.m_top)
326 return buildInsetRectangleString(m_top->serializeResolvingVariables(variables),
336 return m_top->hasVariableReference()
H A DCSSToStyleMap.cpp577 box.m_top = Length(slices->top()->getDoubleValue(), Percent);
579 box.m_top = Length(slices->top()->getIntValue(CSSPrimitiveValue::CSS_NUMBER), Fixed);
613 box.m_top = Length(slices->top()->getIntValue(), Relative);
615 box.m_top = Length(slices->top()->getDoubleValue(CSSPrimitiveValue::CSS_PERCENTAGE), Percent);
617 box.m_top = slices->top()->computeLength<Length>(style(), rootElementStyle(), zoom);
H A DCSSParser.cpp6846 CSSPrimitiveValue* top() const { return m_top.get(); }
6851 if (!m_top)
6852 m_top = val;
6866 void commitFill() { m_fill = true; m_allowFill = false; m_allowNumber = !m_top; }
6871 ASSERT(m_top);
6873 m_right = m_top;
6874 m_bottom = m_top;
6875 m_left = m_top;
6878 m_bottom = m_top;
6886 quad->setTop(m_top);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLElementStack.cpp208 while (m_top) {
210 m_top = m_top->releaseNext();
325 ASSERT(!m_top);
360 ASSERT(m_top);
365 if (recordBelow == m_top) {
370 for (ElementRecord* recordAbove = m_top.get(); recordAbove; recordAbove = recordAbove->next()) {
384 ASSERT(m_top);
385 return m_top.get();
391 ASSERT(m_top);
[all...]
H A DHTMLElementStack.h85 ASSERT(m_top->element());
86 return m_top->element();
91 ASSERT(m_top->node());
92 return m_top->node();
97 ASSERT(m_top->stackItem());
98 return m_top->stackItem().get();
175 OwnPtr<ElementRecord> m_top; member in class:WebCore::HTMLElementStack

Completed in 310 milliseconds