Home
last modified time | relevance | path

Searched refs:m_left (Results 1 – 25 of 34) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xpath/operations/
DOperation.java38 protected Expression m_left; field in Operation
56 m_left.fixupVariables(vars, globalsSize); in fixupVariables()
70 if (null != m_left && m_left.canTraverseOutsideSubtree()) in canTraverseOutsideSubtree()
88 m_left = l; in setLeftRight()
109 XObject left = m_left.execute(xctxt, true); in execute()
138 return m_left; in getLeftOperand()
154 return m_left; in getExpression()
163 m_left = exp; in setExpression()
174 m_left.callVisitors(new LeftExprOwner(), visitor); in callVisitors()
204 if(!m_left.deepEquals(((Operation)expr).m_left)) in deepEquals()
DAnd.java48 XObject expr1 = m_left.execute(xctxt); in execute()
72 return (m_left.bool(xctxt) && m_right.bool(xctxt)); in bool()
DOr.java48 XObject expr1 = m_left.execute(xctxt); in execute()
72 return (m_left.bool(xctxt) || m_right.bool(xctxt)); in bool()
DMult.java63 return (m_left.num(xctxt) * m_right.num(xctxt)); in num()
DMod.java64 return (m_left.num(xctxt) % m_right.num(xctxt)); in num()
DDiv.java64 return (m_left.num(xctxt) / m_right.num(xctxt)); in num()
DMinus.java65 return (m_left.num(xctxt) - m_right.num(xctxt)); in num()
DPlus.java64 return (m_right.num(xctxt) + m_left.num(xctxt)); in num()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DLayoutBoxExtent.cpp40 return isHorizontalWritingMode(writingMode) ? m_top : m_left; in logicalTop()
50 return isHorizontalWritingMode(writingMode) ? m_left : m_top; in logicalLeft()
66 return m_left; in before()
84 return m_left; in after()
93 return isLeftToRightDirection(direction) ? m_left : m_right; in start()
100 return isLeftToRightDirection(direction) ? m_right : m_left; in end()
114 m_left = value; in setBefore()
138 m_left = value; in setAfter()
150 m_left = value; in setStart()
167 m_left = value; in setEnd()
[all …]
DFloatBoxExtent.h43 , m_left(0) in FloatBoxExtent()
51 , m_left(left) in FloatBoxExtent()
64 float left() const { return m_left; } in left()
65 void setLeft(float left) { m_left = left; } in setLeft()
83 m_left = std::min(m_left, other.left()); in unite()
91 m_left = std::min(m_left, rect.x()); in unite()
98 float m_left; variable
DLayoutBoxExtent.h43 LayoutBoxExtent() : m_top(0), m_right(0), m_bottom(0), m_left(0) { } in LayoutBoxExtent()
45 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { } in LayoutBoxExtent()
50 inline LayoutUnit left() const { return m_left; } in left()
55 inline void setLeft(LayoutUnit value) { m_left = value; } in setLeft()
82 LayoutUnit m_left; variable
DIntRectExtent.h43 , m_left(0) in IntRectExtent()
51 , m_left(left) in IntRectExtent()
64 int left() const { return m_left; } in left()
65 void setLeft(int left) { m_left = left; } in setLeft()
82 int m_left; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBorderImageLengthBox.h45 : m_left(length) in BorderImageLengthBox()
53 : m_left(number) in BorderImageLengthBox()
62 : m_left(left) in BorderImageLengthBox()
69 const BorderImageLength& left() const { return m_left; } in 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()); in nonZero()
91 BorderImageLength m_left;
DBorderData.h47 …return m_left.nonZero(!haveImage) || m_right.nonZero(!haveImage) || m_top.nonZero(!haveImage) || m… in hasBorder()
65 if (!m_image.hasImage() && (m_left.style() == BNONE || m_left.style() == BHIDDEN)) in borderLeftWidth()
67 return m_left.width(); in borderLeftWidth()
93 …return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top && m_bottom == o.m_bottom &&…
99 return m_left.visuallyEqual(o.m_left) in visuallyEqual()
115 const BorderValue& left() const { return m_left; } in left()
128 BorderValue m_left;
DBasicShapes.h247 const Length& left() const { return m_left; } in left()
257 void setLeft(const Length& left) { m_left = left; } in setLeft()
275 Length m_left; variable
/external/chromium_org/third_party/WebKit/Source/platform/
DLengthBox.h39 : m_left(t) in LengthBox()
47 : m_left(Length(v, Fixed)) in LengthBox()
55 : m_left(l) in LengthBox()
63 : m_left(Length(l, Fixed)) in LengthBox()
70 const Length& left() const { return m_left; } in left()
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()); in nonZero()
99 Length m_left; variable
DLengthBox.cpp38 return isHorizontalWritingMode(writingMode) ? m_left : m_top; in logicalLeft()
54 return m_left; in before()
72 return m_left; in after()
81 return isLeftToRightDirection(direction) ? m_left : m_right; in start()
88 return isLeftToRightDirection(direction) ? m_right : m_left; in end()
/external/chromium_org/third_party/WebKit/Source/core/css/
DRect.h37 CSSPrimitiveValue* left() const { return m_left.get(); } in left()
42 void setLeft(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> left) { m_left = left; } in setLeft()
48 && compareCSSValuePtr(m_left, other.m_left) in equals()
60 , m_left(cloneFrom.m_left ? cloneFrom.m_left->cloneForCSSOM() : nullptr) in RectBase()
68 RefPtrWillBeMember<CSSPrimitiveValue> m_left; variable
DCSSBasicShapes.h160 CSSPrimitiveValue* left() const { return m_left.get(); } in left()
170 void setLeft(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> left) { m_left = left; } in setLeft()
213 RefPtrWillBeMember<CSSPrimitiveValue> m_left; variable
DCSSBasicShapes.cpp411 m_left ? m_left->cssText() : String(), in cssText()
431 && compareCSSValuePtr(m_left, other.m_left) in equals()
443 visitor->trace(m_left); in trace()
DRect.cpp17 visitor->trace(m_left); in DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DGapRects.h31 const LayoutRect& left() const { return m_left; } in left()
35 void uniteLeft(const LayoutRect& r) { m_left.unite(r); } in uniteLeft()
42 LayoutRect result = m_left; in LayoutRect()
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
55 LayoutRect m_left;
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DLineWidth.cpp44 , m_left(0) in LineWidth()
57 m_left = m_block.logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight).toFloat(); in updateAvailableWidth()
81 newLeft = m_left; in shrinkAvailableWidthForNewFloatIfNeeded()
85 m_left = std::max<float>(m_left, newLeft); in shrinkAvailableWidthForNewFloatIfNeeded()
143 m_left = newLineLeft; in updateLineDimension()
165 float newLineLeft = m_left; in wrapNextToShapeOutside()
188 float newLineLeft = m_left; in fitBelowFloats()
211 m_availableWidth = max(0.0f, m_right - m_left) + m_overhangWidth; in computeAvailableWidthFromLeftAndRight()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DScaling.h77 m_left.resize(m); in compute()
79 m_left.setOnes(); in compute()
110 m_left(i) /= Dr(i); in compute()
150 return m_left; in LeftScaling()
179 VectorXd m_left; // Left scaling vector variable
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
DAnimatableLengthBox.h45 const AnimatableValue* left() const { return m_left.get(); } in left()
57 : m_left(left) in AnimatableLengthBox()
66 RefPtrWillBeMember<AnimatableValue> m_left; variable

12