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

1 2 3

  /external/webkit/WebCore/platform/graphics/
FloatPoint3D.cpp 31 : 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;
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()) { }
83 int x() const { return m_x; }
86 void setX(int x) { m_x = x; }
90 void move(int dx, int dy) { m_x += dx; m_y += dy; }
94 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
152 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
FloatPointHaiku.cpp 37 : m_x(point.x)
44 return BPoint(m_x, m_y);
IntPointHaiku.cpp 37 : m_x(static_cast<int>(point.x))
44 return BPoint(m_x, m_y);
  /external/webkit/WebCore/platform/graphics/qt/
FloatPointQt.cpp 36 : m_x(p.x())
43 return QPointF(m_x, m_y);
IntPointQt.cpp 36 : m_x(p.x())
43 return QPoint(m_x, m_y);
  /external/webkit/WebCore/platform/graphics/skia/
FloatPointSkia.cpp 40 : m_x(p.fX)
47 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
IntPointSkia.cpp 39 : 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/
IntPointWin.cpp 34 : 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/
StyleTransformData.cpp 31 , 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/svg/
SVGPathSegLinetoHorizontal.h 32 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
SVGPathSeg.h 74 : SVGPathSeg() , m_x(x) , m_y(y) {}
76 void setX(float x) { m_x = x; }
77 float x() const { return m_x; }
82 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg", m_x, m_y); }
85 float m_x; member in class:WebCore::SVGPathSegSingleCoord
  /external/webkit/WebCore/page/
WebKitPoint.h 45 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/
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 34 : m_x(point.x)
42 point.x = static_cast<int16>(m_x);
  /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 35 : m_x(p.x)
42 return wxPoint(m_x, m_y);
  /external/webkit/WebCore/platform/graphics/transforms/
TranslateTransformOperation.cpp 33 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);
ScaleTransformOperation.h 44 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
ScaleTransformOperation.cpp 33 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,
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)) {
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),
TranslateTransformOperation.h 45 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
  /external/webkit/JavaScriptCore/wtf/
Vector3.h 39 : 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 645 milliseconds

1 2 3