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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/
LengthPoint.h 44 : m_x(x)
49 bool operator==(const LengthPoint& o) const { return m_x == o.m_x && m_y == o.m_y; }
50 bool operator!=(const LengthPoint& o) const { return m_x != o.m_x || m_y != o.m_y; }
52 void setX(const Length& x) { m_x = x; }
53 const Length& x() const { return m_x; }
59 Length m_x; member in struct:blink::LengthPoint
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoHorizontal.h 32 , m_x(x)
36 float x() const { return m_x; }
39 m_x = x;
44 float m_x; member in class:blink::SVGPathSegLinetoHorizontal
SVGPathSegWithContext.h 38 float x() const { return m_x; }
41 m_x = x;
55 , m_x(x)
61 float m_x; member in class:blink::SVGPathSegSingleCoordinate
SVGPathSegCurvetoCubicSmooth.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:blink::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:blink::SVGPathSegCurvetoQuadratic
SVGPathSegCurvetoCubic.h 32 , m_x(x)
41 float x() const { return m_x; }
44 m_x = x;
84 float m_x; member in class:blink::SVGPathSegCurvetoCubic
SVGGlyphRefElement.h 42 float x() const { return m_x; }
60 float m_x; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMRectReadOnly.h 17 double x() const { return m_x; }
23 double right() const { return std::max(m_x, m_x + m_width); }
25 double left() const { return std::min(m_x, m_x + m_width); }
32 double m_x; member in class:blink::DOMRectReadOnly
DOMPointReadOnly.h 17 double x() const { return m_x; }
27 double m_x; member in class:blink::DOMPointReadOnly
DOMPointReadOnly.cpp 16 : m_x(x)
DOMRectReadOnly.cpp 16 : m_x(x)
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
FloatPointCG.cpp 34 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
40 return CGPointMake(m_x, m_y);
IntPointCG.cpp 33 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
39 return CGPointMake(m_x, m_y);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleTransformData.cpp 31 , m_x(RenderStyle::initialTransformOriginX())
40 , m_x(o.m_x)
48 return m_x == o.m_x && m_y == o.m_y && m_z == o.m_z && m_operations == o.m_operations;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint3D.cpp 35 m_x /= tempLength;
IntPoint.h 46 IntPoint() : m_x(0), m_y(0) { }
47 IntPoint(int x, int y) : m_x(x), m_y(y) { }
48 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
52 int x() const { return m_x; }
55 void setX(int x) { m_x = x; }
60 void move(int dx, int dy) { m_x += dx; m_y += dy; }
63 m_x = lroundf(static_cast<float>(m_x * sx));
69 return IntPoint(m_x > other.m_x ? m_x : other.m_x
102 int m_x, m_y; member in class:blink::IntPoint
    [all...]
FloatPoint.h 54 FloatPoint() : m_x(0), m_y(0) { }
55 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
58 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { }
64 float x() const { return m_x; }
67 void setX(float x) { m_x = x; }
71 m_x = x;
76 m_x += dx;
81 m_x += a.width();
87 m_x += a.width();
92 m_x += a.x()
153 float m_x, m_y; member in class:blink::FloatPoint
    [all...]
FloatPoint3D.h 33 : m_x(0)
40 : m_x(x)
47 : m_x(p.x())
54 : m_x(p.x())
60 float x() const { return m_x; }
61 void setX(float x) { m_x = x; }
70 m_x = x;
76 m_x += dx;
82 m_x *= sx;
89 return !m_x && !m_y && !m_z
127 float m_x; member in class:blink::FloatPoint3D
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
FloatPointMac.mm 34 FloatPoint::FloatPoint(const NSPoint& p) : m_x(p.x), m_y(p.y)
40 return NSMakePoint(m_x, m_y);
IntPointMac.mm 33 IntPoint::IntPoint(const NSPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
39 return NSMakePoint(m_x, m_y);
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
ScaleTransformOperation.h 44 double x() const { return m_x; }
58 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
63 transform.scale3d(m_x, m_y, m_z);
69 : m_x(sx)
77 double m_x; member in class:blink::ScaleTransformOperation
TranslateTransformOperation.h 48 double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
51 Length x() const { return m_x; }
63 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
75 return m_x.isPercent() || m_y.isPercent();
79 : m_x(tx)
87 Length m_x; member in class:blink::TranslateTransformOperation
RotateTransformOperation.h 44 double x() const { return m_x; }
61 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
66 transform.rotate3d(m_x, m_y, m_z, m_angle);
72 : m_x(x)
81 double m_x; member in class:blink::RotateTransformOperation
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableLengthPoint.h 45 const AnimatableValue* x() const { return m_x.get(); }
55 : m_x(x)
62 RefPtrWillBeMember<AnimatableValue> m_x; member in class:blink::FINAL
AnimatableLengthPoint3D.h 45 const AnimatableValue* x() const { return m_x.get(); }
56 : m_x(x)
64 RefPtrWillBeMember<AnimatableValue> m_x; member in class:blink::FINAL

Completed in 131 milliseconds

1 2 3 4