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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoHorizontal.h 32 , m_x(x)
36 float x() const { return m_x; }
39 m_x = x;
44 float m_x; member in class:WebCore::SVGPathSegLinetoHorizontal
SVGPathSegCurvetoCubic.h 32 , m_x(x)
41 float x() const { return m_x; }
44 m_x = x;
84 float m_x; member in class:WebCore::SVGPathSegCurvetoCubic
SVGPathSegCurvetoCubicSmooth.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::SVGPathSegCurvetoQuadratic
SVGPathSegArc.h 32 , m_x(x)
42 float x() const { return m_x; }
45 m_x = x;
92 float m_x; member in class:WebCore::SVGPathSegArc
SVGPathSegWithContext.h 78 float x() const { return m_x; }
81 m_x = x;
95 , m_x(x)
101 float m_x; member in class:WebCore::SVGPathSegSingleCoordinate
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cg/
FloatPointCG.cpp 34 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
40 return CGPointMake(m_x, m_y);
IntPointCG.cpp 33 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
39 return CGPointMake(m_x, m_y);
  /external/chromium_org/third_party/WebKit/Source/core/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;
StyleTransformData.h 47 Length m_x; member in class:WebCore::StyleTransformData
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMPoint.h 46 float x() const { return m_x; }
49 void setX(float x) { m_x = x; }
54 : m_x(x)
60 float m_x; member in class:WebCore::DOMPoint
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatPoint3D.cpp 35 m_x /= tempLength;
IntPoint.h 47 IntPoint() : m_x(0), m_y(0) { }
48 IntPoint(int x, int y) : m_x(x), m_y(y) { }
49 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
53 int x() const { return m_x; }
56 void setX(int x) { m_x = x; }
61 void move(int dx, int dy) { m_x += dx; m_y += dy; }
64 m_x = lroundf(static_cast<float>(m_x * sx));
70 return IntPoint(m_x > other.m_x ? m_x : other.m_x
103 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
FloatPoint3D.h 33 : m_x(0)
40 : m_x(x)
47 : m_x(p.x())
54 : m_x(p.x())
60 float x() const { return m_x; }
61 void setX(float x) { m_x = x; }
70 m_x = x;
76 m_x += dx;
82 m_x *= sx;
89 return !m_x && !m_y && !m_z
127 float m_x; member in class:WebCore::FloatPoint3D
    [all...]
FloatPoint.cpp 43 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y())
47 FloatPoint::FloatPoint(const LayoutPoint& p) : m_x(p.x()), m_y(p.y())
56 m_x /= tempLength;
63 return atan2f(m_y, m_x);
73 m_x += size.width();
79 m_x += point.x();
85 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
92 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
99 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
FloatPoint.h 57 FloatPoint() : m_x(0), m_y(0) { }
58 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
61 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { }
67 float x() const { return m_x; }
70 void setX(float x) { m_x = x; }
74 m_x = x;
79 m_x += dx;
84 m_x += a.width();
90 m_x += a.width();
95 m_x += a.x()
149 float m_x, m_y; member in class:WebCore::FloatPoint
    [all...]
LayoutPoint.h 42 LayoutPoint() : m_x(0), m_y(0) { }
43 LayoutPoint(LayoutUnit x, LayoutUnit y) : m_x(x), m_y(y) { }
44 LayoutPoint(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { }
45 explicit LayoutPoint(const FloatPoint& size) : m_x(size.x()), m_y(size.y()) { }
46 explicit LayoutPoint(const LayoutSize& size) : m_x(size.width()), m_y(size.height()) { }
50 LayoutUnit x() const { return m_x; }
53 void setX(LayoutUnit x) { m_x = x; }
58 void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; }
61 m_x *= sx;
67 return LayoutPoint(std::max(m_x, other.m_x), std::max(m_y, other.m_y))
86 LayoutUnit m_x, m_y; member in class:WebCore::LayoutPoint
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/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/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
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
RotateTransformOperation.cpp 39 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
44 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
45 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
46 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) {
48 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x,
59 fromT.rotate3d((fromOp ? fromOp->m_x : 0),
64 toT.rotate3d((toOp ? toOp->m_x : 0),
TranslateTransformOperation.h 46 double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
50 Length x() const { return m_x; }
55 virtual bool isIdentity() const { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); }
65 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
71 return m_x.type() == Percent || m_y.type() == Percent;
77 : m_x(tx)
85 Length m_x; member in class:WebCore::TranslateTransformOperation
RotateTransformOperation.h 44 double x() const { return m_x; }
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);
72 : m_x(x)
81 double m_x; member in class:WebCore::RotateTransformOperation
ScaleTransformOperation.cpp 35 return ScaleTransformOperation::create(WebCore::blend(m_x, 1.0, progress),
40 double fromX = fromOp ? fromOp->m_x : 1.0;
43 return ScaleTransformOperation::create(WebCore::blend(fromX, m_x, progress),
TranslateTransformOperation.cpp 34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress), zeroLength.blend(m_y, progress), zeroLength.blend(m_z, progress), m_type);
37 Length fromX = fromOp ? fromOp->m_x : zeroLength;
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);

Completed in 334 milliseconds

1 2 3