/external/webkit/Source/WebCore/platform/graphics/ |
IntPoint.h | 80 IntPoint() : m_x(0), m_y(0) { } 81 IntPoint(int x, int y) : m_x(x), m_y(y) { } 82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { } 87 int y() const { return m_y; } 90 void setY(int y) { m_y = y; } 93 void move(int dx, int dy) { m_x += dx; m_y += dy; } 98 m_y > other.m_y ? m_y : other.m_y); 163 int m_x, m_y; member in class:WebCore::IntPoint [all...] |
FloatPoint3D.h | 34 , 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 && !m_z 128 float m_y; member in class:WebCore::FloatPoint3D [all...] |
FloatPoint.h | 69 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/transforms/ |
ScaleTransformOperation.h | 45 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
|
TranslateTransformOperation.cpp | 35 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);
|
RotateTransformOperation.h | 45 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
|
RotateTransformOperation.cpp | 38 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),
|
TranslateTransformOperation.h | 46 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
|
ScaleTransformOperation.cpp | 34 m_y + (1. - m_y) * progress, 39 double fromY = fromOp ? fromOp->m_y : 1.; 42 fromY + (m_y - fromY) * progress,
|
/external/webkit/Source/WebCore/rendering/style/ |
StyleTransformData.cpp | 32 , 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;
|
ShadowData.h | 44 , m_y(0) 55 , m_y(y) 75 int y() const { return m_y; } 90 int m_y; member in class:WebCore::ShadowData
|
/external/webkit/Source/WebCore/page/ |
WebKitPoint.h | 47 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/win/ |
IntPointWin.cpp | 35 , 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/svg/ |
SVGPathSegLinetoVertical.h | 33 , m_y(y) 37 float y() const { return m_y; } 40 m_y = y; 45 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
|
SVGPathSegWithContext.h | 86 float y() const { return m_y; } 89 m_y = y; 97 , m_y(y) 103 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
|
SVGPathSegCurvetoCubicSmooth.h | 34 , m_y(y) 47 float y() const { return m_y; } 50 m_y = y; 70 float m_y; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
|
SVGPathSegCurvetoQuadratic.h | 34 , m_y(y) 47 float y() const { return m_y; } 50 m_y = y; 70 float m_y; member in class:WebCore::SVGPathSegCurvetoQuadratic
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
PlatformPathWinCE.cpp | 56 pp.m_y = c1y; 67 pp.m_y = c1y * a + c2y * b + c3y * c; 73 pp.m_y = c3y; 96 pp.m_y = c1y; 110 pp.m_y = c1y * a + c2y * b + c3y * c + c4y * d; 116 pp.m_y = c4y; 170 (point.m_y < origin.m_y ? 2 : 1) 171 : (point.m_y < origin.m_y ? 3 : 0) 190 float m_y; member in struct:WebCore::PathVector [all...] |
/external/webkit/Source/WebCore/platform/graphics/skia/ |
IntPointSkia.cpp | 40 , 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/haiku/ |
FloatPointHaiku.cpp | 38 , m_y(point.y) 44 return BPoint(m_x, m_y);
|
IntPointHaiku.cpp | 38 , m_y(static_cast<int>(point.y)) 44 return BPoint(m_x, m_y);
|
/external/webkit/Source/WebCore/platform/graphics/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/webkit/Source/WebCore/platform/graphics/qt/ |
FloatPointQt.cpp | 37 , m_y(p.y()) 43 return QPointF(m_x, m_y);
|
IntPointQt.cpp | 37 , m_y(p.y()) 43 return QPoint(m_x, m_y);
|