HomeSort by relevance Sort by last modified time
    Searched refs:m_bottom (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/
LengthBox.h 42 , m_bottom(t)
50 , m_bottom(Length(v, Fixed))
58 , m_bottom(b)
66 , m_bottom(Length(b, Fixed))
73 Length bottom() const { return m_bottom; }
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());
101 Length m_bottom; member in struct:WebCore::LengthBox
LengthBox.cpp 43 return isHorizontalWritingMode(writingMode) ? m_right : m_bottom;
52 return m_bottom;
66 return m_bottom;
75 return m_bottom;
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/
LayoutBoxExtent.cpp 43 return isHorizontalWritingMode(writingMode) ? m_bottom : m_right;
53 return isHorizontalWritingMode(writingMode) ? m_right : m_bottom;
62 return m_bottom;
76 return m_bottom;
85 return m_bottom;
92 return isLeftToRightDirection(direction) ? m_top : m_bottom;
99 return isLeftToRightDirection(direction) ? m_bottom : m_top;
109 m_bottom = value;
127 m_bottom = value;
140 m_bottom = value
    [all...]
IntRectExtent.h 42 , m_bottom(0)
50 , m_bottom(bottom)
61 int bottom() const { return m_bottom; }
62 void setBottom(int bottom) { m_bottom = bottom; }
81 int m_bottom; member in class:WebCore::IntRectExtent
LayoutBoxExtent.h 42 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) { }
48 inline LayoutUnit bottom() const { return m_bottom; }
53 inline void setBottom(LayoutUnit value) { m_bottom = value; }
80 LayoutUnit m_bottom; member in class:WebCore::LayoutBoxExtent
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 47 return m_left.nonZero(!haveImage) || m_right.nonZero(!haveImage) || m_top.nonZero(!haveImage) || m_bottom.nonZero(!haveImage);
86 if (!m_image.hasImage() && (m_bottom.style() == BNONE || m_bottom.style() == BHIDDEN))
88 return m_bottom.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
105 const BorderValue& bottom() const { return m_bottom; }
118 BorderValue m_bottom; member in class:WebCore::BorderData
BasicShapes.h 191 Length bottom() const { return m_bottom; }
198 void setBottom(Length bottom) { m_bottom = bottom; }
220 Length m_bottom; member in class:WebCore::BasicShapeInsetRectangle
BasicShapes.cpp 191 std::max<float>(boundingBox.height() - top - floatValueForLength(m_bottom, boundingBox.height()), 0)
208 result->setBottom(m_bottom.blend(o->bottom(), progress));
RenderStyle.h     [all...]
RenderStyle.cpp 663 data->clip.m_bottom = bottom;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
Rect.h 34 CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
39 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
47 && compareCSSValuePtr(m_bottom, other.m_bottom);
54 || m_bottom->hasVariableReference()
63 , m_bottom(cloneFrom.m_bottom ? cloneFrom.m_bottom->cloneForCSSOM() : 0)
73 RefPtr<CSSPrimitiveValue> m_bottom; member in class:WebCore::RectBase
CSSBasicShapes.h 107 CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
114 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
131 RefPtr<CSSPrimitiveValue> m_bottom; member in class:WebCore::CSSBasicShapeInsetRectangle
CSSBasicShapes.cpp 292 m_bottom->cssText(),
306 && compareCSSValuePtr(m_bottom, other.m_bottom)
316 m_bottom->serializeResolvingVariables(variables),
326 || m_bottom->hasVariableReference()
CSSToStyleMap.cpp 581 box.m_bottom = Length(slices->bottom()->getDoubleValue(), Percent);
583 box.m_bottom = Length((int)slices->bottom()->getFloatValue(CSSPrimitiveValue::CSS_NUMBER), Fixed);
627 box.m_bottom = Length(slices->bottom()->getIntValue(), Relative);
629 box.m_bottom = Length(slices->bottom()->getDoubleValue(CSSPrimitiveValue::CSS_PERCENTAGE), Percent);
631 box.m_bottom = slices->bottom()->computeLength<Length>(style(), rootElementStyle(), zoom);
CSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.cpp 108 , m_bottom(m_irect.fBottom)
231 for (int i = m_top + readOnlyLineOffset; i < m_bottom; i += readOnlyLineOffset)
247 triangle(m_right, m_bottom, m_right - triangleSize, m_bottom, m_right, m_bottom - triangleSize, m_edgeColor);
252 triangle(m_left, m_bottom, m_left, m_bottom - triangleSize, m_left + triangleSize, m_bottom, m_edgeColor);
377 line(m_left + longOffset, m_top + gripShortIndent, m_left + longOffset, m_bottom - gripShortIndent, m_fgColor);
378 line(m_right - longOffset, m_top + gripShortIndent, m_right - longOffset, m_bottom - gripShortIndent, m_fgColor)
    [all...]
WebTestThemeControlWin.h 193 const int m_bottom; member in class:WebTestRunner::WebTestThemeControlWin

Completed in 840 milliseconds