/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(Length y) { m_y = y; } 56 Length y() const { return m_y; } 60 Length m_y; member in struct:WebCore::LengthPoint
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
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 | 58 FloatPoint() : m_x(0), m_y(0) { } 59 FloatPoint(float x, float y) : m_x(x), m_y(y) { } 62 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { } 69 float y() const { return m_y; } 72 void setY(float y) { m_y = y; } 76 m_y = y; 81 m_y += dy; 86 m_y += a.height(); 92 m_y += a.height(); 97 m_y += a.y() 152 float m_x, m_y; member in class:WebCore::FloatPoint [all...] |
LayoutPoint.h | 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()) { } 51 LayoutUnit y() const { return m_y; } 54 void setY(LayoutUnit y) { m_y = y; } 58 void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; } 62 m_y *= sy; 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...] |
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 | 47 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y()) 51 FloatPoint::FloatPoint(const LayoutPoint& p) : m_x(p.x()), m_y(p.y()) 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) }; 96 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); 103 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
|
/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
|
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
|
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
|
SVGPathSegWithContext.h | 84 float y() const { return m_y; } 87 m_y = y; 95 , m_y(y) 101 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
|
PatternAttributes.h | 34 , m_y() 56 SVGLength y() const { return m_y; } 74 m_y = value; 140 SVGLength m_y; member in struct:WebCore::PatternAttributes
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
ScaleTransformOperation.h | 45 double y() const { return m_y; } 49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; } 58 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z; 63 transform.scale3d(m_x, m_y, m_z); 70 , m_y(sy) 78 double m_y; member in class:WebCore::ScaleTransformOperation
|
RotateTransformOperation.h | 45 double y() const { return m_y; } 59 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle; 64 transform.rotate3d(m_x, m_y, m_z, m_angle); 71 , m_y(y) 80 double m_y; member in class:WebCore::RotateTransformOperation
|
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)) { 49 fromOp ? fromOp->m_y : m_y, 60 (fromOp ? fromOp->m_y : 0), 65 (toOp ? toOp->m_y : 0),
|
TranslateTransformOperation.h | 47 double y(const FloatSize& borderBoxSize) const { return floatValueForLength(m_y, borderBoxSize.height()); } 51 Length y() const { return m_y; } 55 virtual bool isIdentity() const { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); } 64 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z; 76 return m_x.isPercent() || m_y.isPercent(); 81 , m_y(ty) 89 Length m_y; member in class:WebCore::TranslateTransformOperation
|
ScaleTransformOperation.cpp | 36 WebCore::blend(m_y, 1.0, progress), 41 double fromY = fromOp ? fromOp->m_y : 1.0; 44 WebCore::blend(fromY, m_y, progress),
|
TranslateTransformOperation.cpp | 34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, ValueRangeAll), zeroLength.blend(m_z, progress, ValueRangeAll), m_type); 38 Length fromY = fromOp ? fromOp->m_y : zeroLength; 40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), m_z.blend(fromZ, progress, ValueRangeAll), m_type);
|
/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;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMPoint.h | 47 float y() const { return m_y; } 50 void setY(float y) { m_y = y; } 55 , m_y(y) 61 float m_y; member in class:WebCore::DOMPoint
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/ |
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/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/core/animation/ |
AnimatableLengthPoint.h | 46 const AnimatableValue* y() const { return m_y.get(); } 55 , m_y(y) 62 RefPtr<AnimatableValue> m_y; member in class:WebCore::AnimatableLengthPoint
|