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

123

/external/webkit/WebCore/platform/graphics/
H A DFloatPoint3D.cpp31 : m_x(0)
38 : m_x(x)
45 : m_x(p.x())
53 float length = sqrtf(m_x * m_x + m_y * m_y + m_z * m_z);
56 m_x /= length;
H A DFloatPoint.cpp36 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y())
43 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
50 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
/external/webkit/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/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/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/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/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/WebCore/page/
H A DWebKitPoint.h45 float x() const { return m_x; }
48 void setX(float x) { m_x = x; }
53 : m_x(x)
58 float m_x, m_y; member in class:WebCore::WebKitPoint
/external/webkit/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/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 DTranslateTransformOperation.cpp33 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, progress),
38 Length fromX = fromOp ? fromOp->m_x : Length(m_x.type());
41 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
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.h45 double x(const IntSize& borderBoxSize) const { return m_x.calcFloatValue(borderBoxSize.width()); }
50 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
60 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
66 return m_x.type() == Percent || m_y.type() == Percent;
72 : m_x(tx)
80 Length m_x; member in class:WebCore::TranslateTransformOperation
H A DRotateTransformOperation.h57 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
62 transform.rotate3d(m_x, m_y, m_z, m_angle);
69 : m_x(x)
78 double m_x; member in class:WebCore::RotateTransformOperation
/external/webkit/WebCore/platform/graphics/brew/
H A DIntPointBrew.cpp34 : m_x(point.x)
42 point.x = static_cast<int16>(m_x);
/external/webkit/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/WebCore/platform/graphics/wx/
H A DIntPointWx.cpp35 : m_x(p.x)
42 return wxPoint(m_x, m_y);
/external/webkit/WebCore/svg/
H A DSVGPathSegLinetoHorizontal.h32 SVGPathSegLinetoHorizontal(float x) : SVGPathSeg(), m_x(x) {}
34 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg", m_x); }
36 void setX(float x) { m_x = x; }
37 float x() const { return m_x; }
40 float m_x; member in class:WebCore::SVGPathSegLinetoHorizontal
/external/webkit/JavaScriptCore/wtf/
H A DVector3.h39 : m_x(0.0)
46 : m_x(x)
53 : m_x(p[0])
60 : m_x(p[0])
68 return sqrt(m_x * m_x + m_y * m_y + m_z * m_z);
73 return !m_x && !m_y && !m_z;
83 m_x *= k;
88 double x() const { return m_x; }
93 double m_x; member in class:WebCore::Vector3
[all...]

Completed in 558 milliseconds

123