HomeSort by relevance Sort by last modified time
    Searched refs:m_left (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderImageLengthBox.h 45 : m_left(length)
53 : m_left(number)
62 : m_left(left)
69 const BorderImageLength& left() const { return m_left; }
76 return m_left == other.m_left && m_right == other.m_right
87 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
91 BorderImageLength m_left; member in class:WebCore::BorderImageLengthBox
BorderData.h 47 return m_left.nonZero(!haveImage) || m_right.nonZero(!haveImage) || m_top.nonZero(!haveImage) || m_bottom.nonZero(!haveImage);
65 if (!m_image.hasImage() && (m_left.style() == BNONE || m_left.style() == BHIDDEN))
67 return m_left.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
99 return m_left.visuallyEqual(o.m_left)
115 const BorderValue& left() const { return m_left; }
128 BorderValue m_left; member in class:WebCore::BorderData
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GapRects.h 31 const LayoutRect& left() const { return m_left; }
35 void uniteLeft(const LayoutRect& r) { m_left.unite(r); }
42 LayoutRect result = m_left;
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
55 LayoutRect m_left; member in struct:WebCore::GapRects
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.h 41 : m_left(t)
49 : m_left(Length(v, Fixed))
57 : m_left(l)
65 : m_left(Length(l, Fixed))
72 const Length& left() const { return m_left; }
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());
101 Length m_left; member in class:WebCore::LengthBox
LengthBox.cpp 38 return isHorizontalWritingMode(writingMode) ? m_left : m_top;
54 return m_left;
72 return m_left;
81 return isLeftToRightDirection(direction) ? m_left : m_right;
88 return isLeftToRightDirection(direction) ? m_right : m_left;
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 38 protected Expression m_left; field in class:Operation
56 m_left.fixupVariables(vars, globalsSize);
70 if (null != m_left && m_left.canTraverseOutsideSubtree())
88 m_left = l;
109 XObject left = m_left.execute(xctxt, true);
138 return m_left;
154 return m_left;
163 m_left = exp;
174 m_left.callVisitors(new LeftExprOwner(), visitor)
    [all...]
And.java 48 XObject expr1 = m_left.execute(xctxt);
72 return (m_left.bool(xctxt) && m_right.bool(xctxt));
Or.java 48 XObject expr1 = m_left.execute(xctxt);
72 return (m_left.bool(xctxt) || m_right.bool(xctxt));
Div.java 64 return (m_left.num(xctxt) / m_right.num(xctxt));
Minus.java 65 return (m_left.num(xctxt) - m_right.num(xctxt));
Mod.java 64 return (m_left.num(xctxt) % m_right.num(xctxt));
Mult.java 63 return (m_left.num(xctxt) * m_right.num(xctxt));
Plus.java 64 return (m_right.num(xctxt) + m_left.num(xctxt));
Equals.java 65 XObject left = m_left.execute(xctxt, true);
  /external/chromium_org/third_party/WebKit/Source/core/css/
Rect.cpp 17 visitor->trace(m_left);
Rect.h 36 CSSPrimitiveValue* left() const { return m_left.get(); }
41 void setLeft(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> left) { m_left = left; }
47 && compareCSSValuePtr(m_left, other.m_left)
59 , m_left(cloneFrom.m_left ? cloneFrom.m_left->cloneForCSSOM() : nullptr)
67 RefPtrWillBeMember<CSSPrimitiveValue> m_left; member in class:WebCore::RectBase
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutBoxExtent.cpp 40 return isHorizontalWritingMode(writingMode) ? m_top : m_left;
50 return isHorizontalWritingMode(writingMode) ? m_left : m_top;
66 return m_left;
84 return m_left;
93 return isLeftToRightDirection(direction) ? m_left : m_right;
100 return isLeftToRightDirection(direction) ? m_right : m_left;
114 m_left = value;
138 m_left = value;
150 m_left = value;
167 m_left = value
    [all...]
FloatBoxExtent.h 43 , m_left(0)
51 , m_left(left)
64 float left() const { return m_left; }
65 void setLeft(float left) { m_left = left; }
83 m_left = std::min(m_left, other.left());
91 m_left = std::min(m_left, rect.x());
98 float m_left; member in class:WebCore::FloatBoxExtent
IntRectExtent.h 43 , m_left(0)
51 , m_left(left)
64 int left() const { return m_left; }
65 void setLeft(int left) { m_left = left; }
82 int m_left; member in class:WebCore::IntRectExtent
LayoutBoxExtent.h 43 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) { }
50 inline LayoutUnit left() const { return m_left; }
55 inline void setLeft(LayoutUnit value) { m_left = value; }
82 LayoutUnit m_left; member in class:WebCore::LayoutBoxExtent
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthBox.h 45 const AnimatableValue* left() const { return m_left.get(); }
57 : m_left(left)
66 RefPtrWillBeMember<AnimatableValue> m_left; member in class:WebCore::FINAL
AnimatableLengthBox.cpp 57 visitor->trace(m_left);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
LineWidth.cpp 44 , m_left(0)
57 m_left = m_block.logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight).toFloat();
81 newLeft = m_left;
85 m_left = std::max<float>(m_left, newLeft);
143 m_left = newLineLeft;
165 float newLineLeft = m_left;
188 float newLineLeft = m_left;
211 m_availableWidth = max(0.0f, m_right - m_left) + m_overhangWidth;
LineWidth.h 83 float m_left; member in class:WebCore::LineWidth
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 77 m_left.resize(m);
79 m_left.setOnes();
110 m_left(i) /= Dr(i);
150 return m_left;
179 VectorXd m_left; // Left scaling vector member in class:Eigen::IterScaling

Completed in 477 milliseconds

1 2