Searched defs:m_left (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableLengthBox.h45 const AnimatableValue* left() const { return m_left.get(); }
56 : m_left(left)
65 RefPtr<AnimatableValue> m_left; member in class:WebCore::AnimatableLengthBox
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderImageLengthBox.h45 : 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
H A DBorderData.h47 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
102 const BorderValue& left() const { return m_left; }
115 BorderValue m_left; member in class:WebCore::BorderData
H A DBasicShapes.h192 Length left() const { return m_left; }
199 void setLeft(Length left) { m_left = left; }
221 Length m_left; member in class:WebCore::BasicShapeInsetRectangle
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthBox.h41 : m_left(t)
49 : m_left(Length(v, Fixed))
57 : m_left(l)
65 : m_left(Length(l, Fixed))
72 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
H A DPODRedBlackTree.h259 : m_left(0)
283 Node* left() const { return m_left; }
284 void setLeft(Node* node) { m_left = node; }
293 Node* m_left; member in class:WebCore::PODRedBlackTree::Node
/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) { }
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
H A DIntRectExtent.h43 , 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
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h31 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
H A DLineWidth.h78 float m_left; member in class:WebCore::LineWidth
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java38 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRect.h35 CSSPrimitiveValue* left() const { return m_left.get(); }
40 void setLeft(PassRefPtr<CSSPrimitiveValue> left) { m_left = left; }
46 && compareCSSValuePtr(m_left, other.m_left)
55 || m_left->hasVariableReference();
64 , m_left(cloneFrom.m_left ? cloneFrom.m_left->cloneForCSSOM() : 0)
74 RefPtr<CSSPrimitiveValue> m_left; member in class:WebCore::RectBase
H A DCSSBasicShapes.h108 CSSPrimitiveValue* left() const { return m_left.get(); }
115 void setLeft(PassRefPtr<CSSPrimitiveValue> left) { m_left = left; }
132 RefPtr<CSSPrimitiveValue> m_left; member in class:WebCore::CSSBasicShapeInsetRectangle
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DScaling.h77 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:Scaling
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestThemeControlWin.h191 const int m_left; member in class:WebTestRunner::WebTestThemeControlWin

Completed in 1908 milliseconds