Searched refs:m_x (Results 1 - 25 of 77) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthPoint.h44 : 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/
H A DSVGPathSegLinetoHorizontal.h32 , m_x(x)
36 float x() const { return m_x; }
39 m_x = x;
44 float m_x; member in class:blink::SVGPathSegLinetoHorizontal
H A DSVGPathSegWithContext.h38 float x() const { return m_x; }
41 m_x = x;
55 , m_x(x)
61 float m_x; member in class:blink::SVGPathSegSingleCoordinate
H A DSVGPathSegCurvetoCubic.h32 , m_x(x)
41 float x() const { return m_x; }
44 m_x = x;
84 float m_x; member in class:blink::SVGPathSegCurvetoCubic
H A DSVGPathSegCurvetoCubicSmooth.h32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:blink::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:blink::SVGPathSegCurvetoQuadratic
H A DSVGPathSegArc.h32 , m_x(x)
42 float x() const { return m_x; }
45 m_x = x;
92 float m_x; member in class:blink::SVGPathSegArc
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatPointCG.cpp34 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
40 return CGPointMake(m_x, m_y);
H A DIntPointCG.cpp33 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/
H A DStyleTransformData.cpp31 , 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/core/dom/
H A DDOMRectReadOnly.h17 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
H A DDOMPointReadOnly.h17 double x() const { return m_x; }
27 double m_x; member in class:blink::DOMPointReadOnly
H A DDOMPointReadOnly.cpp16 : m_x(x)
H A DDOMRectReadOnly.cpp16 : m_x(x)
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPoint3D.cpp35 m_x /= tempLength;
H A DIntPoint.h46 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
102 int m_x, m_y; member in class:blink::IntPoint
[all...]
H A DFloatPoint.h54 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
153 float m_x, m_y; member in class:blink::FloatPoint
[all...]
H A DFloatPoint3D.h33 : 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
127 float m_x; member in class:blink::FloatPoint3D
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
H A DFloatPointMac.mm34 FloatPoint::FloatPoint(const NSPoint& p) : m_x(p.x), m_y(p.y)
40 return NSMakePoint(m_x, m_y);
H A DIntPointMac.mm33 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/
H A DScaleTransformOperation.h44 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
H A DTranslateTransformOperation.h48 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
H A DScaleTransformOperation.cpp35 return ScaleTransformOperation::create(blink::blend(m_x, 1.0, progress),
40 double fromX = fromOp ? fromOp->m_x : 1.0;
43 return ScaleTransformOperation::create(blink::blend(fromX, m_x, progress),
H A DRotateTransformOperation.h44 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/
H A DAnimatableLengthPoint.h45 const AnimatableValue* x() const { return m_x.get(); }
55 : m_x(x)
62 RefPtrWillBeMember<AnimatableValue> m_x; member in class:blink::FINAL

Completed in 219 milliseconds

1234