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

/external/chromium_org/third_party/WebKit/Source/core/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;
/external/chromium_org/third_party/WebKit/Source/core/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.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/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.cpp185 float top = floatValueForLength(m_top, boundingBox.height());
206 result->setTop(m_top.blend(o->top(), progress));
H A DRenderStyle.h911 void setTop(Length v) { SET_VAR(surround, offset.m_top, v); }
944 void resetBorderTop() { SET_VAR(surround, border.m_top, BorderValue()); }
997 void setBorderTopWidth(unsigned v) { SET_VAR(surround, border.m_top.m_width, v); }
998 void setBorderTopStyle(EBorderStyle v) { SET_VAR(surround, border.m_top.m_style, v); }
999 void setBorderTopColor(const StyleColor& v) { SET_BORDERVALUE_COLOR(surround, border.m_top, v); }
1018 void setClipTop(Length v) { SET_VAR(visual, clip.m_top, v); }
1111 void setMarginTop(Length v) { SET_VAR(surround, margin.m_top, v); }
1120 void setPaddingTop(Length v) { SET_VAR(surround, padding.m_top, v); }
H A DRenderStyle.cpp661 data->clip.m_top = top;
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestThemeControlWin.cpp107 , m_top(m_irect.fTop)
193 SkScalar cy = SkIntToScalar(m_top + m_height / 2);
231 for (int i = m_top + readOnlyLineOffset; i < m_bottom; i += readOnlyLineOffset)
237 triangle(m_left, m_top, m_left + triangleSize, m_top, m_left, m_top + triangleSize, m_edgeColor);
242 triangle(m_right, m_top, m_right, m_top + triangleSize, m_right - triangleSize, m_top, m_edgeColor);
376 line(m_left + gripLongIndent, m_top
[all...]
H A DWebTestThemeControlWin.h192 const int m_top; member in class:WebTestRunner::WebTestThemeControlWin
/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
H A DCSSBasicShapes.cpp290 return buildInsetRectangleString(m_top->cssText(),
304 return compareCSSValuePtr(m_top, other.m_top)
314 return buildInsetRectangleString(m_top->serializeResolvingVariables(variables),
324 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-in.cpp6806 CSSPrimitiveValue* top() const { return m_top.get(); }
6811 if (!m_top)
6812 m_top = val;
6826 void commitFill() { m_fill = true; m_allowFill = false; m_allowNumber = !m_top; }
6831 ASSERT(m_top);
6833 m_right = m_top;
6834 m_bottom = m_top;
6835 m_left = m_top;
6838 m_bottom = m_top;
6846 quad->setTop(m_top);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLElementStack.cpp202 while (m_top) {
204 m_top = m_top->releaseNext();
319 ASSERT(!m_top);
354 ASSERT(m_top);
359 if (recordBelow == m_top) {
364 for (ElementRecord* recordAbove = m_top.get(); recordAbove; recordAbove = recordAbove->next()) {
378 ASSERT(m_top);
379 return m_top.get();
385 ASSERT(m_top);
[all...]
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/html/
H A DHTMLDialogElement.cpp47 , m_top(0)
81 style->setTop(Length(m_top.toInt(), WebCore::Fixed));
100 m_top = scrollTop;
102 m_top += (visibleHeight - box->height()) / 2;
H A DHTMLDialogElement.h57 LayoutUnit m_top; member in class:WebCore::FINAL

Completed in 170 milliseconds