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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/
LengthPoint.h 44 : m_x(x)
49 bool operator==(const LengthPoint& o) const { return m_x == o.m_x && m_y == o.m_y; }
50 bool operator!=(const LengthPoint& o) const { return m_x != o.m_x || m_y != o.m_y; }
52 void setX(const Length& x) { m_x = x; }
53 const Length& x() const { return m_x; }
59 Length m_x; member in struct:WebCore::LengthPoint
  /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
SVGPathSegWithContext.h 39 float x() const { return m_x; }
42 m_x = x;
56 , m_x(x)
62 float m_x; member in class:WebCore::SVGPathSegSingleCoordinate
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
SVGGlyphRefElement.h 41 float x() const { return m_x; }
59 float m_x; member in class:WebCore::FINAL
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
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/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/frame/
DOMPoint.h 47 float x() const { return m_x; }
50 void setX(float x) { m_x = x; }
57 : m_x(x)
63 float m_x; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint3D.cpp 35 m_x /= tempLength;
IntPoint.h 46 IntPoint() : m_x(0), m_y(0) { }
47 IntPoint(int x, int y) : m_x(x), m_y(y) { }
48 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
52 int x() const { return m_x; }
55 void setX(int x) { m_x = x; }
60 void move(int dx, int dy) { m_x += dx; m_y += dy; }
63 m_x = lroundf(static_cast<float>(m_x * sx));
69 return IntPoint(m_x > other.m_x ? m_x : other.m_x
102 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
FloatPoint.h 54 FloatPoint() : m_x(0), m_y(0) { }
55 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
58 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { }
64 float x() const { return m_x; }
67 void setX(float x) { m_x = x; }
71 m_x = x;
76 m_x += dx;
81 m_x += a.width();
87 m_x += a.width();
92 m_x += a.x()
153 float m_x, m_y; member in class:WebCore::FloatPoint
    [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 45 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y())
50 : m_x(p.x().toFloat())
60 m_x /= tempLength;
67 return atan2f(m_y, m_x);
77 m_x += size.width();
83 m_x += point.x();
89 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
FloatBox.h 41 : m_x(0)
51 : m_x(x)
61 : m_x(box.x())
72 m_x = origin.x();
90 m_x += location.x();
107 float minX = std::min(m_x, low.x());
115 m_x = minX;
149 float right() const { return m_x + m_width; }
152 float x() const { return m_x; }
159 float m_x; member in class:WebCore::FloatBox
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/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/platform/transforms/
ScaleTransformOperation.h 44 double x() const { return m_x; }
51 virtual bool isIdentity() const OVERRIDE { return m_x == 1 && m_y == 1 && m_z == 1; }
60 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
65 transform.scale3d(m_x, m_y, m_z);
71 : m_x(sx)
79 double m_x; member in class:WebCore::ScaleTransformOperation
TranslateTransformOperation.h 48 double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
51 Length x() const { return m_x; }
56 virtual bool isIdentity() const OVERRIDE { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !m_z; }
65 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
77 return m_x.isPercent() || m_y.isPercent();
81 : m_x(tx)
89 Length m_x; member in class:WebCore::TranslateTransformOperation
RotateTransformOperation.h 44 double x() const { return m_x; }
63 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
68 transform.rotate3d(m_x, m_y, m_z, m_angle);
74 : m_x(x)
83 double m_x; member in class:WebCore::RotateTransformOperation
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint.h 45 const AnimatableValue* x() const { return m_x.get(); }
55 : m_x(x)
62 RefPtrWillBeMember<AnimatableValue> m_x; member in class:WebCore::FINAL

Completed in 2226 milliseconds

1 2 3