HomeSort by relevance Sort by last modified time
    Searched defs:m_left (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/
LengthBox.h 39 : m_left(t)
47 : m_left(Length(v, Fixed))
55 : m_left(l)
63 : m_left(Length(l, Fixed))
70 Length left() const { return m_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());
98 Length m_left; member in struct:WebCore::LengthBox
PODRedBlackTree.h 259 : 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/core/platform/graphics/
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) { }
49 inline LayoutUnit left() const { return m_left; }
54 inline void setLeft(LayoutUnit value) { m_left = value; }
81 LayoutUnit m_left; member in class:WebCore::LayoutBoxExtent
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
  /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
RenderBlockLineLayout.cpp 92 , m_left(0)
130 m_availableWidth = max(0.0f, m_right - m_left) + m_overhangWidth;
138 float m_left; member in class:WebCore::LineWidth
150 m_left = m_block->logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight);
154 m_left = max<float>(m_segment->logicalLeft, m_left);
201 m_left = max<float>(m_left, newLeft);
239 float newLineLeft = m_left;
257 m_left = newLineLeft
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
Rect.h 35 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
CSSBasicShapes.h 108 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/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);
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
BasicShapes.h 192 Length left() const { return m_left; }
199 void setLeft(Length left) { m_left = left; }
221 Length m_left; member in class:WebCore::BasicShapeInsetRectangle
  /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:Scaling
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.h 190 const int m_left; member in class:WebTestRunner::WebTestThemeControlWin

Completed in 114 milliseconds