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

1 2 3

  /external/webkit/WebCore/platform/graphics/
FloatPoint3D.cpp 32 , m_y(0)
39 , m_y(y)
46 , m_y(p.y())
53 float length = sqrtf(m_x * m_x + m_y * m_y + m_z * m_z);
57 m_y /= length;
IntPoint.h 79 IntPoint() : m_x(0), m_y(0) { }
80 IntPoint(int x, int y) : m_x(x), m_y(y) { }
81 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
84 int y() const { return m_y; }
87 void setY(int y) { m_y = y; }
90 void move(int dx, int dy) { m_x += dx; m_y += dy; }
95 m_y > other.m_y ? m_y : other.m_y);
152 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
  /external/webkit/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/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);
  /external/webkit/WebCore/platform/graphics/skia/
FloatPointSkia.cpp 41 , m_y(p.fY)
47 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
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/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/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;
  /external/webkit/WebCore/svg/
SVGPathSegLinetoVertical.h 32 SVGPathSegLinetoVertical(float y) : SVGPathSeg(), m_y(y) {}
34 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg", m_y); }
36 void setY(float y) { m_y = y; }
37 float y() const { return m_y; }
40 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
SVGPathSeg.h 74 : SVGPathSeg() , m_x(x) , m_y(y) {}
79 void setY(float y) { m_y = y; }
80 float y() const { return m_y; }
82 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg", m_x, m_y); }
86 float m_y; member in class:WebCore::SVGPathSegSingleCoord
  /external/webkit/WebCore/page/
WebKitPoint.h 46 float y() const { return m_y; }
49 void setY(float y) { m_y = y; }
54 , m_y(y)
58 float m_x, m_y; member in class:WebCore::WebKitPoint
  /external/webkit/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/WebCore/platform/graphics/brew/
IntPointBrew.cpp 35 , m_y(point.y)
43 point.y = static_cast<int16>(m_y);
  /external/webkit/WebCore/platform/graphics/cg/
FloatPointCG.cpp 36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
42 return CGPointMake(m_x, m_y);
IntPointCG.cpp 35 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/
IntPointWx.cpp 36 , m_y(p.y)
42 return wxPoint(m_x, m_y);
  /external/webkit/WebCore/platform/graphics/transforms/
TranslateTransformOperation.cpp 34 Length(m_y.type()).blend(m_y, progress),
39 Length fromY = fromOp ? fromOp->m_y : Length(m_y.type());
41 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
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
ScaleTransformOperation.cpp 34 m_y + (1. - m_y) * progress,
39 double fromY = fromOp ? fromOp->m_y : 1.;
42 fromY + (m_y - fromY) * progress,
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 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;
73 , m_y(ty)
81 Length m_y; member in class:WebCore::TranslateTransformOperation
  /external/webkit/JavaScriptCore/wtf/
Vector3.h 40 , m_y(0.0)
47 , m_y(y)
54 , m_y(p[1])
61 , m_y(p[1])
68 return sqrt(m_x * m_x + m_y * m_y + m_z * m_z);
73 return !m_x && !m_y && !m_z;
84 m_y *= k;
89 double y() const { return m_y; }
94 double m_y; member in class:WebCore::Vector3
    [all...]

Completed in 764 milliseconds

1 2 3