Searched refs:m_y (Results 1 - 25 of 75) sorted by relevance

123

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFloatPointHaiku.cpp38 , m_y(point.y)
44 return BPoint(m_x, m_y);
H A DIntPointHaiku.cpp38 , m_y(static_cast<int>(point.y))
44 return BPoint(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFloatPointQt.cpp37 , m_y(p.y())
43 return QPointF(m_x, m_y);
H A DIntPointQt.cpp37 , m_y(p.y())
43 return QPoint(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFloatPointSkia.cpp41 , m_y(p.fY)
47 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
H A DIntPointSkia.cpp40 , m_y(p.fY)
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.cpp35 , m_y(p.y)
41 POINT p = {m_x, m_y};
47 , m_y(p.y)
53 POINTS p = {m_x, m_y};
/external/webkit/Source/WebCore/rendering/style/
H A DStyleTransformData.cpp32 , m_y(RenderStyle::initialTransformOriginY())
41 , m_y(o.m_y)
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.h47 float y() const { return m_y; }
50 void setY(float y) { m_y = y; }
55 , m_y(y)
59 float m_x, m_y; member in class:WebCore::WebKitPoint
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint3D.cpp36 m_y /= tempLength;
H A DFloatPoint3D.h34 , m_y(0)
41 , m_y(y)
48 , m_y(p.y())
55 , m_y(p.y())
63 float y() const { return m_y; }
64 void setY(float y) { m_y = y; }
71 m_y = y;
77 m_y += dy;
83 m_y *= sy;
89 return !m_x && !m_y
128 float m_y; 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) { }
79 float y() const { return m_y; }
82 void setY(float y) { m_y = y; }
86 m_y = y;
91 m_y += dy;
96 m_y *= sy;
103 return m_x * a.x() + m_y * a.y();
109 return m_x * m_x + m_y * m_y;
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.cpp34 m_y + (1. - m_y) * progress,
39 double fromY = fromOp ? fromOp->m_y : 1.;
42 fromY + (m_y - fromY) * progress,
H A DScaleTransformOperation.h45 double y() const { return m_y; }
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);
72 , m_y(sy)
80 double m_y; 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)) {
48 fromOp ? fromOp->m_y : m_y,
59 (float)(fromOp ? fromOp->m_y : 0),
64 (float)(toOp ? toOp->m_y : 0),
H A DTranslateTransformOperation.cpp35 Length(m_y.type()).blend(m_y, narrowPrecisionToFloat(progress)),
40 Length fromY = fromOp ? fromOp->m_y : Length(m_y.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.h45 double y() const { return m_y; }
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);
73 , m_y(y)
82 double m_y; member in class:WebCore::RotateTransformOperation
H A DTranslateTransformOperation.h46 double y(const IntSize& borderBoxSize) const { return m_y.calcFloatValue(borderBoxSize.height()); }
50 Length y() const { return m_y; }
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;
77 , m_y(ty)
85 Length m_y; member in class:WebCore::TranslateTransformOperation
/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntPointBrew.cpp35 , m_y(point.y)
43 point.y = static_cast<int16>(m_y);
/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.cpp36 , m_y(p.y)
42 return wxPoint(m_x, m_y);
/external/webkit/Source/WebCore/platform/graphics/efl/
H A DIntPointEfl.cpp32 , m_y(p.y)

Completed in 453 milliseconds

123