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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/
LengthPoint.h 45 , m_y(y)
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; }
55 void setY(const Length& y) { m_y = y; }
56 const Length& y() const { return m_y; }
60 Length m_y; member in struct:WebCore::LengthPoint
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoVertical.h 32 , m_y(y)
36 float y() const { return m_y; }
39 m_y = y;
44 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
SVGPathSegWithContext.h 46 float y() const { return m_y; }
49 m_y = y;
57 , m_y(y)
63 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
SVGPathSegCurvetoCubic.h 33 , m_y(y)
48 float y() const { return m_y; }
51 m_y = y;
85 float m_y; member in class:WebCore::SVGPathSegCurvetoCubic
SVGPathSegCurvetoCubicSmooth.h 33 , m_y(y)
46 float y() const { return m_y; }
49 m_y = y;
69 float m_y; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 33 , m_y(y)
46 float y() const { return m_y; }
49 m_y = y;
69 float m_y; member in class:WebCore::SVGPathSegCurvetoQuadratic
SVGGlyphRefElement.h 43 float y() const { return m_y; }
60 float m_y; member in class:WebCore::FINAL
SVGPathSegArc.h 33 , m_y(y)
49 float y() const { return m_y; }
52 m_y = y;
93 float m_y; 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 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;
StyleTransformData.h 48 Length m_y; member in class:WebCore::StyleTransformData
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMPoint.h 48 float y() const { return m_y; }
51 void setY(float y) { m_y = y; }
58 , m_y(y)
64 float m_y; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint3D.cpp 36 m_y /= 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()) { }
53 int y() const { return m_y; }
56 void setY(int y) { m_y = y; }
60 void move(int dx, int dy) { m_x += dx; m_y += dy; }
64 m_y = lroundf(static_cast<float>(m_y * sy));
70 m_y > other.m_y ? m_y : other.m_y)
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()) { }
65 float y() const { return m_y; }
68 void setY(float y) { m_y = y; }
72 m_y = y;
77 m_y += dy;
82 m_y += a.height();
88 m_y += a.height();
93 m_y += a.y()
153 float m_x, m_y; member in class:WebCore::FloatPoint
    [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.cpp 45 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y())
51 , m_y(p.y().toFloat())
61 m_y /= tempLength;
67 return atan2f(m_y, m_x);
78 m_y += size.height();
84 m_y += point.y();
89 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
FloatBox.h 42 , m_y(0)
52 , m_y(y)
62 , m_y(box.y())
73 m_y = origin.y();
91 m_y += location.y();
108 float minY = std::min(m_y, low.y());
116 m_y = minY;
150 float bottom() const { return m_y + m_height; }
153 float y() const { return m_y; }
160 float m_y; 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 45 double y() const { return m_y; }
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);
72 , m_y(sy)
80 double m_y; member in class:WebCore::ScaleTransformOperation
TranslateTransformOperation.h 49 double y(const FloatSize& borderBoxSize) const { return floatValueForLength(m_y, borderBoxSize.height()); }
52 Length y() const { return m_y; }
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();
82 , m_y(ty)
90 Length m_y; member in class:WebCore::TranslateTransformOperation
RotateTransformOperation.h 45 double y() const { return m_y; }
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);
75 , m_y(y)
84 double m_y; member in class:WebCore::RotateTransformOperation
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint.h 46 const AnimatableValue* y() const { return m_y.get(); }
56 , m_y(y)
63 RefPtrWillBeMember<AnimatableValue> m_y; member in class:WebCore::FINAL

Completed in 2780 milliseconds

1 2 3 4