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

123

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFloatPointHaiku.cpp37 : m_x(point.x)
44 return BPoint(m_x, m_y);
H A DIntPointHaiku.cpp37 : m_x(static_cast<int>(point.x))
44 return BPoint(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFloatPointQt.cpp36 : m_x(p.x())
43 return QPointF(m_x, m_y);
H A DIntPointQt.cpp36 : m_x(p.x())
43 return QPoint(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFloatPointSkia.cpp40 : m_x(p.fX)
47 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
H A DIntPointSkia.cpp39 : m_x(p.fX)
46 SkIPoint p = { m_x, m_y };
52 SkPoint p = { SkIntToScalar(m_x), SkIntToScalar(m_y) };
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntPointWin.cpp34 : m_x(p.x)
41 POINT p = {m_x, m_y};
46 : m_x(p.x)
53 POINTS p = {m_x, m_y};
/external/webkit/Source/WebCore/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/webkit/Source/WebCore/page/
H A DWebKitPoint.h46 float x() const { return m_x; }
49 void setX(float x) { m_x = x; }
54 : m_x(x)
59 float m_x, m_y; member in class:WebCore::WebKitPoint
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint3D.cpp35 m_x /= tempLength;
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:WebCore::FloatPoint3D
[all...]
H A DFloatPoint.h69 FloatPoint() : m_x(0), m_y(0) { }
70 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
78 float x() const { return m_x; }
81 void setX(float x) { m_x = x; }
85 m_x = x;
90 m_x += dx;
95 m_x *= sx;
103 return m_x * a.x() + m_y * a.y();
109 return m_x * m_x
142 float m_x, m_y; member in class:WebCore::FloatPoint
[all...]
/external/webkit/Source/WebCore/platform/graphics/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/webkit/Source/WebCore/platform/graphics/transforms/
H A DScaleTransformOperation.cpp33 return ScaleTransformOperation::create(m_x + (1. - m_x) * progress,
38 double fromX = fromOp ? fromOp->m_x : 1.;
41 return ScaleTransformOperation::create(fromX + (m_x - fromX) * progress,
H A DScaleTransformOperation.h44 double x() const { return m_x; }
49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; }
59 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
64 transform.scale3d(m_x, m_y, m_z);
71 : m_x(sx)
79 double m_x; member in class:WebCore::ScaleTransformOperation
H A DRotateTransformOperation.cpp38 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
43 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
44 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
45 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) {
47 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x,
58 fromT.rotate3d((float)(fromOp ? fromOp->m_x : 0),
63 toT.rotate3d((float)(toOp ? toOp->m_x : 0),
H A DTranslateTransformOperation.cpp34 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, narrowPrecisionToFloat(progress)),
39 Length fromX = fromOp ? fromOp->m_x : Length(m_x.type());
42 return TranslateTransformOperation::create(m_x.blend(fromX, narrowPrecisionToFloat(progress)), m_y.blend(fromY, narrowPrecisionToFloat(progress)), m_z.blend(fromZ, narrowPrecisionToFloat(progress)), m_type);
H A DRotateTransformOperation.h44 double x() const { return m_x; }
60 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
65 transform.rotate3d(m_x, m_y, m_z, m_angle);
72 : m_x(x)
81 double m_x; member in class:WebCore::RotateTransformOperation
H A DTranslateTransformOperation.h45 double x(const IntSize& borderBoxSize) const { return m_x.calcFloatValue(borderBoxSize.width()); }
49 Length x() const { return m_x; }
54 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
64 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
70 return m_x.type() == Percent || m_y.type() == Percent;
76 : m_x(tx)
84 Length m_x; member in class:WebCore::TranslateTransformOperation
/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntPointBrew.cpp34 : m_x(point.x)
42 point.x = static_cast<int16>(m_x);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DFloatPointCG.cpp36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
42 return CGPointMake(m_x, m_y);
H A DIntPointCG.cpp35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
41 return CGPointMake(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DIntPointWx.cpp35 : m_x(p.x)
42 return wxPoint(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/efl/
H A DIntPointEfl.cpp31 : m_x(p.x)

Completed in 196 milliseconds

123