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

1 2 3

  /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(Length x) { m_x = x; }
53 Length x() const { return m_x; }
59 Length m_x; member in struct:WebCore::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:WebCore::SVGPathSegLinetoHorizontal
SVGPathSegCurvetoCubic.h 32 , m_x(x)
41 float x() const { return m_x; }
44 m_x = x;
84 float m_x; member in class:WebCore::SVGPathSegCurvetoCubic
SVGPathSegCurvetoCubicSmooth.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::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:WebCore::SVGPathSegCurvetoQuadratic
SVGPathSegArc.h 32 , m_x(x)
42 float x() const { return m_x; }
45 m_x = x;
92 float m_x; member in class:WebCore::SVGPathSegArc
  /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;
StyleTransformData.h 47 Length m_x; member in class:WebCore::StyleTransformData
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMPoint.h 46 float x() const { return m_x; }
49 void setX(float x) { m_x = x; }
54 : m_x(x)
60 float m_x; member in class:WebCore::DOMPoint
  /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:WebCore::IntPoint
    [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:WebCore::FloatPoint3D
    [all...]
FloatPoint.cpp 47 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y())
51 FloatPoint::FloatPoint(const LayoutPoint& p) : m_x(p.x()), m_y(p.y())
60 m_x /= tempLength;
67 return atan2f(m_y, m_x);
77 m_x += size.width();
83 m_x += point.x();
89 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
96 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
103 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
FloatPoint.h 58 FloatPoint() : m_x(0), m_y(0) { }
59 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
62 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { }
68 float x() const { return m_x; }
71 void setX(float x) { m_x = x; }
75 m_x = x;
80 m_x += dx;
85 m_x += a.width();
91 m_x += a.width();
96 m_x += a.x()
152 float m_x, m_y; member in class:WebCore::FloatPoint
    [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; }
49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; }
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:WebCore::ScaleTransformOperation
RotateTransformOperation.cpp 39 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
44 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
45 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
46 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) {
48 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x,
59 fromT.rotate3d((fromOp ? fromOp->m_x : 0),
64 toT.rotate3d((toOp ? toOp->m_x : 0),
TranslateTransformOperation.h 46 double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
50 Length x() const { return m_x; }
55 virtual bool isIdentity() const { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); }
64 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
76 return m_x.isPercent() || m_y.isPercent();
80 : m_x(tx)
88 Length m_x; member in class:WebCore::TranslateTransformOperation
RotateTransformOperation.h 44 double x() const { return m_x; }
59 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
64 transform.rotate3d(m_x, m_y, m_z, m_angle);
70 : m_x(x)
79 double m_x; member in class:WebCore::RotateTransformOperation
ScaleTransformOperation.cpp 35 return ScaleTransformOperation::create(WebCore::blend(m_x, 1.0, progress),
40 double fromX = fromOp ? fromOp->m_x : 1.0;
43 return ScaleTransformOperation::create(WebCore::blend(fromX, m_x, progress),
TranslateTransformOperation.cpp 34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, ValueRangeAll), zeroLength.blend(m_z, progress, ValueRangeAll), m_type);
37 Length fromX = fromOp ? fromOp->m_x : zeroLength;
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), m_z.blend(fromZ, progress, ValueRangeAll), m_type);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint.h 45 const AnimatableValue* x() const { return m_x.get(); }
54 : m_x(x)
61 RefPtr<AnimatableValue> m_x; member in class:WebCore::AnimatableLengthPoint

Completed in 493 milliseconds

1 2 3