Searched defs:m_y (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/page/
H A DWebKitPoint.h47 float y() const { return m_y; }
50 void setY(float y) { m_y = y; }
55 , m_y(y)
59 float m_x, m_y; member in class:WebCore::WebKitPoint
/external/webkit/Source/WebCore/rendering/style/
H A DStyleTransformData.h48 Length m_y; member in class:WebCore::StyleTransformData
H A DShadowData.h44 , m_y(0)
55 , m_y(y)
75 int y() const { return m_y; }
90 int m_y; member in class:WebCore::ShadowData
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegLinetoVertical.h33 , m_y(y)
37 float y() const { return m_y; }
40 m_y = y;
45 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
H A DSVGPathSegWithContext.h86 float y() const { return m_y; }
89 m_y = y;
97 , m_y(y)
103 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
H A DSVGPathSegCurvetoCubicSmooth.h34 , m_y(y)
47 float y() const { return m_y; }
50 m_y = y;
70 float m_y; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h34 , m_y(y)
47 float y() const { return m_y; }
50 m_y = y;
70 float m_y; member in class:WebCore::SVGPathSegCurvetoQuadratic
H A DSVGPathSegArc.h34 , m_y(y)
50 float y() const { return m_y; }
53 m_y = y;
94 float m_y; member in class:WebCore::SVGPathSegArc
H A DSVGPathSegCurvetoCubic.h34 , m_y(y)
49 float y() const { return m_y; }
52 m_y = y;
86 float m_y; member in class:WebCore::SVGPathSegCurvetoCubic
H A DPatternAttributes.h34 , m_y()
56 SVGLength y() const { return m_y; }
74 m_y = value;
140 SVGLength m_y; member in struct:WebCore::PatternAttributes
/external/webkit/Source/WebCore/platform/graphics/android/
H A DBaseTileTexture.h45 , m_y(-1)
55 int m_y; member in class:WebCore::TextureTileInfo
H A DBaseTile.h123 int y() const { return m_y; }
150 int m_y; member in class:WebCore::BaseTile
H A DLayerAndroid.cpp509 , m_y(y)
528 SkScalar localY = SkIntToScalar(m_y - TOUCH_SLOP) - localBounds.fTop;
542 int y() const { return m_y; }
547 m_y = y;
552 int m_y; member in class:WebCore::LayerAndroid::FindState
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DRotateTransformOperation.h45 double y() const { return m_y; }
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);
73 , m_y(y)
82 double m_y; member in class:WebCore::RotateTransformOperation
H A DScaleTransformOperation.h45 double y() const { return m_y; }
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);
72 , m_y(sy)
80 double m_y; member in class:WebCore::ScaleTransformOperation
H A DTranslateTransformOperation.h46 double y(const IntSize& borderBoxSize) const { return m_y.calcFloatValue(borderBoxSize.height()); }
50 Length y() const { return m_y; }
54 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
64 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
70 return m_x.type() == Percent || m_y.type() == Percent;
77 , m_y(ty)
85 Length m_y; member in class:WebCore::TranslateTransformOperation
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextLayoutEngine.h90 float m_y; member in class:WebCore::SVGTextLayoutEngine
/external/webkit/Source/WebCore/dom/
H A DDeviceMotionData.h46 double y() const { return m_y; }
53 double m_y; member in class:WebCore::DeviceMotionData::Acceleration
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.h69 FloatPoint() : m_x(0), m_y(0) { }
70 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
79 float y() const { return m_y; }
82 void setY(float y) { m_y = y; }
86 m_y = y;
91 m_y += dy;
96 m_y *= sy;
103 return m_x * a.x() + m_y * a.y();
109 return m_x * m_x + m_y * m_y;
142 float m_x, m_y; member in class:WebCore::FloatPoint
[all...]
H A DIntPoint.h80 IntPoint() : m_x(0), m_y(0) { }
81 IntPoint(int x, int y) : m_x(x), m_y(y) { }
82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
87 int y() const { return m_y; }
90 void setY(int y) { m_y = y; }
93 void move(int dx, int dy) { m_x += dx; m_y += dy; }
98 m_y > other.m_y ? m_y : other.m_y);
163 int m_x, m_y; member in class:WebCore::IntPoint
[all...]
H A DFloatPoint3D.h34 , 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
128 float m_y; member in class:WebCore::FloatPoint3D
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DAccessibilityUIElement.h97 CppVariant m_y; member in class:AccessibilityUIElement
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.h34 float m_y; member in struct:WebCore::PathPoint
36 const float& y() const { return m_y; }
40 m_y = y;
42 operator FloatPoint() const { return FloatPoint(m_x, m_y); }
46 m_y += offset.height();
51 m_y = p.y();
54 void clear() { m_x = m_y = 0; }
H A DPlatformPathWinCE.cpp56 pp.m_y = c1y;
67 pp.m_y = c1y * a + c2y * b + c3y * c;
73 pp.m_y = c3y;
96 pp.m_y = c1y;
110 pp.m_y = c1y * a + c2y * b + c3y * c + c4y * d;
116 pp.m_y = c4y;
170 (point.m_y < origin.m_y ? 2 : 1)
171 : (point.m_y < origin.m_y
190 float m_y; member in struct:WebCore::PathVector
[all...]
/external/webkit/Source/WebCore/rendering/
H A DInlineBox.h44 , m_y(0)
79 , m_y(y)
229 void setY(float y) { m_y = y; }
230 float y() const { return m_y; }
236 float logicalLeft() const { return isHorizontal() ? m_x : m_y; }
243 m_y = left;
249 int logicalTop() const { return isHorizontal() ? m_y : m_x; }
254 m_y = top;
266 FloatRect logicalFrameRect() const { return isHorizontal() ? IntRect(m_x, m_y, m_logicalWidth, logicalHeight()) : IntRect(m_y, m_
330 float m_y; member in class:WebCore::InlineBox
[all...]

Completed in 398 milliseconds

12