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

/macosx-10.10/WebCore-7600.1.25/platform/
H A DLengthBox.h39 , m_top(type)
47 , m_top(Length(v, Fixed))
55 , m_top(WTF::move(top))
63 , m_top(Length(top, Fixed))
70 const Length& top() const { return m_top; }
83 return m_left == other.m_left && m_right == other.m_right && m_top == other.m_top && m_bottom == other.m_bottom;
93 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
98 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.10/WebCore-7600.1.25/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.10/JavaScriptCore-7600.1.17/heap/
H A DGCSegmentedArrayInlines.h37 , m_top(0)
66 m_top = 0;
69 m_segments.head()->m_top = 0;
76 ASSERT(m_segments.head()->m_top == s_segmentCapacity);
82 nextSegment->m_top = 0;
114 for (unsigned i = 0; i < m_top; ++i) {
138 size_t result = m_top++;
139 ASSERT(result == m_segments.head()->m_top++);
146 size_t result = --m_top;
147 ASSERT(result == --m_segments.head()->m_top);
[all...]
H A DMarkStack.cpp47 size_t cellsToDonate = m_top / 2; // Round down to donate 0 / 1 cells.
49 ASSERT(m_top);
95 ASSERT(other.m_segments.head()->m_top == s_segmentCapacity);
H A DGCSegmentedArray.h43 , m_top(0)
58 size_t m_top; member in class:JSC::GCArraySegment
85 iterator begin() const { return GCSegmentedArrayIterator<T>(m_segments.head(), m_top); }
107 size_t m_top; member in class:JSC::GCSegmentedArray
/macosx-10.10/WebCore-7600.1.25/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.h230 const Length& top() const { return m_top; }
240 void setTop(Length top) { m_top = WTF::move(top); }
258 Length m_top; member in class:WebCore::BasicShapeInset
H A DBasicShapes.cpp233 float top = floatValueForLength(m_top, boundingBox.height());
255 result->setTop(m_top.blend(o->top(), progress));
H A DRenderStyle.h1153 void setTop(Length v) { SET_VAR(surround, offset.m_top, WTF::move(v)); }
1190 region.offset.m_top = WTF::move(t);
1202 void resetBorderTop() { SET_VAR(surround, border.m_top, BorderValue()); }
1255 void setBorderTopWidth(float v) { SET_VAR(surround, border.m_top.m_width, v); }
1256 void setBorderTopStyle(EBorderStyle v) { SET_VAR(surround, border.m_top.m_style, v); }
1257 void setBorderTopColor(const Color& v) { SET_BORDERVALUE_COLOR(surround, border.m_top, v); }
1276 void setClipTop(Length length) { SET_VAR(visual, clip.m_top, WTF::move(length)); }
1387 void setMarginTop(Length length) { SET_VAR(surround, margin.m_top, WTF::move(length)); }
1396 void setPaddingTop(Length length) { SET_VAR(surround, padding.m_top, WTF::move(length)); }
H A DRenderStyle.cpp829 data->clip.m_top = top;
1216 region.offset.m_top = Length();
/macosx-10.10/WebCore-7600.1.25/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 : m_top(cloneFrom.m_top ? cloneFrom.m_top->cloneForCSSOM() : 0)
63 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::RectBase
H A DCSSBasicShapes.h69 CSSPrimitiveValue* top() const { return m_top.get(); }
79 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; }
119 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::CSSBasicShapeInset
H A DCSSBasicShapes.cpp390 return buildInsetString(m_top ? m_top->cssText() : String(),
411 return compareCSSValuePtr(m_top, other.m_top)
H A DCSSToStyleMap.cpp605 box.m_top = Length(slices->top()->getDoubleValue(), Percent);
607 box.m_top = Length(slices->top()->getIntValue(CSSPrimitiveValue::CSS_NUMBER), Fixed);
641 box.m_top = Length(slices->top()->getIntValue(), Relative);
643 box.m_top = Length(slices->top()->getDoubleValue(CSSPrimitiveValue::CSS_PERCENTAGE), Percent);
645 box.m_top = slices->top()->computeLength<Length>(conversionData);
H A DCSSParser.cpp7494 CSSPrimitiveValue* top() const { return m_top.get(); }
7499 if (!m_top)
7500 m_top = val;
7514 void commitFill() { m_fill = true; m_allowFill = false; m_allowNumber = !m_top; }
7519 ASSERT(m_top);
7521 m_right = m_top;
7522 m_bottom = m_top;
7523 m_left = m_top;
7526 m_bottom = m_top;
7534 quad->setTop(m_top);
7550 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::BorderImageSliceParseContext
7666 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::BorderImageQuadParseContext
[all...]
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLElementStack.cpp205 while (m_top) {
207 m_top = m_top->releaseNext();
322 ASSERT(!m_top);
357 ASSERT(m_top);
362 if (recordBelow == m_top.get()) {
367 for (ElementRecord* recordAbove = m_top.get(); recordAbove; recordAbove = recordAbove->next()) {
381 ASSERT(m_top);
382 return m_top.get();
388 ASSERT(m_top);
[all...]
H A DHTMLElementStack.h81 ASSERT(m_top->element());
82 return m_top->element();
87 ASSERT(m_top->node());
88 return m_top->node();
93 ASSERT(m_top->stackItem());
94 return m_top->stackItem().get();
171 std::unique_ptr<ElementRecord> m_top; member in class:WebCore::HTMLElementStack

Completed in 301 milliseconds