Searched defs:m_top (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableLengthBox.h47 const AnimatableValue* top() const { return m_top.get(); }
58 , m_top(top)
67 RefPtr<AnimatableValue> m_top; member in class:WebCore::AnimatableLengthBox
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderImageLengthBox.h47 , m_top(length)
55 , m_top(number)
64 , m_top(top)
71 const BorderImageLength& top() const { return m_top; }
77 && m_top == other.m_top && m_bottom == other.m_bottom;
87 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
93 BorderImageLength m_top; member in class:WebCore::BorderImageLengthBox
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
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthBox.h43 , m_top(t)
51 , m_top(Length(v, Fixed))
59 , m_top(t)
67 , m_top(Length(t, Fixed))
74 Length top() const { return m_top; }
87 return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom;
97 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
103 Length m_top; member in class:WebCore::LengthBox
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutBoxExtent.h43 LayoutBoxExtent() : m_top(0), m_right(0), m_bottom(0), m_left(0) { }
45 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
47 inline LayoutUnit top() const { return m_top; }
52 inline void setTop(LayoutUnit value) { m_top = value; }
79 LayoutUnit m_top; member in class:WebCore::LayoutBoxExtent
H A DIntRectExtent.h40 : m_top(0)
48 : m_top(top)
55 int top() const { return m_top; }
56 void setTop(int top) { m_top = top; }
79 int m_top; member in class:WebCore::IntRectExtent
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLElementStack.h84 ASSERT(m_top->element());
85 return m_top->element();
90 ASSERT(m_top->node());
91 return m_top->node();
96 ASSERT(m_top->stackItem());
97 return m_top->stackItem().get();
172 OwnPtr<ElementRecord> m_top; member in class:WebCore::HTMLElementStack
/external/chromium_org/third_party/WebKit/Source/core/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)
52 return m_top->hasVariableReference()
61 : m_top(cloneFrom.m_top ? cloneFrom.m_top->cloneForCSSOM() : 0)
71 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::RectBase
H A DCSSBasicShapes.h105 CSSPrimitiveValue* top() const { return m_top.get(); }
112 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; }
130 RefPtr<CSSPrimitiveValue> m_top; member in class:WebCore::CSSBasicShapeInsetRectangle
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestThemeControlWin.h193 const int m_top; member in class:WebTestRunner::WebTestThemeControlWin

Completed in 114 milliseconds