Searched defs:m_x (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/WebCore/page/
H A DWebKitPoint.h46 float x() const { return m_x; }
49 void setX(float x) { m_x = x; }
54 : m_x(x)
59 float m_x, m_y; member in class:WebCore::WebKitPoint
/external/webkit/Source/WebCore/rendering/style/
H A DStyleTransformData.h47 Length m_x; member in class:WebCore::StyleTransformData
H A DShadowData.h43 : m_x(0)
54 : m_x(x)
74 int x() const { return m_x; }
89 int m_x; member in class:WebCore::ShadowData
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegLinetoHorizontal.h33 , m_x(x)
37 float x() const { return m_x; }
40 m_x = x;
45 float m_x; member in class:WebCore::SVGPathSegLinetoHorizontal
H A DSVGPathSegWithContext.h79 float x() const { return m_x; }
82 m_x = x;
96 , m_x(x)
102 float m_x; member in class:WebCore::SVGPathSegSingleCoordinate
H A DSVGPathSegCurvetoCubicSmooth.h33 , m_x(x)
40 float x() const { return m_x; }
43 m_x = x;
69 float m_x; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h33 , m_x(x)
40 float x() const { return m_x; }
43 m_x = x;
69 float m_x; member in class:WebCore::SVGPathSegCurvetoQuadratic
H A DSVGPathSegArc.h33 , m_x(x)
43 float x() const { return m_x; }
46 m_x = x;
93 float m_x; member in class:WebCore::SVGPathSegArc
H A DSVGPathSegCurvetoCubic.h33 , m_x(x)
42 float x() const { return m_x; }
45 m_x = x;
85 float m_x; member in class:WebCore::SVGPathSegCurvetoCubic
H A DPatternAttributes.h33 : m_x()
55 SVGLength x() const { return m_x; }
68 m_x = value;
139 SVGLength m_x; member in struct:WebCore::PatternAttributes
/external/webkit/Source/WebCore/platform/graphics/android/
H A DBaseTileTexture.h44 : m_x(-1)
54 int m_x; member in class:WebCore::TextureTileInfo
H A DBaseTile.h122 int x() const { return m_x; }
149 int m_x; member in class:WebCore::BaseTile
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DRotateTransformOperation.h44 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
H A DScaleTransformOperation.h44 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
H A DTranslateTransformOperation.h45 double x(const IntSize& borderBoxSize) const { return m_x.calcFloatValue(borderBoxSize.width()); }
49 Length x() const { return m_x; }
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;
76 : m_x(tx)
84 Length m_x; member in class:WebCore::TranslateTransformOperation
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextLayoutEngine.h89 float m_x; member in class:WebCore::SVGTextLayoutEngine
/external/webkit/Source/WebCore/dom/
H A DDeviceMotionData.h45 double x() const { return m_x; }
52 double m_x; 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) { }
78 float x() const { return m_x; }
81 void setX(float x) { m_x = x; }
85 m_x = x;
90 m_x += dx;
95 m_x *= sx;
103 return m_x * a.x() + m_y * a.y();
109 return m_x * m_x
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()) { }
86 int x() const { return m_x; }
89 void setX(int x) { m_x = x; }
93 void move(int dx, int dy) { m_x += dx; m_y += dy; }
97 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
163 int m_x, m_y; member in class:WebCore::IntPoint
[all...]
H A DFloatPoint3D.h33 : 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
127 float m_x; member in class:WebCore::FloatPoint3D
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DAccessibilityUIElement.h96 CppVariant m_x; member in class:AccessibilityUIElement
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.h33 float m_x; member in struct:WebCore::PathPoint
35 const float& x() const { return m_x; }
39 m_x = x;
42 operator FloatPoint() const { return FloatPoint(m_x, m_y); }
45 m_x += offset.width();
50 m_x = p.x();
54 void clear() { m_x = m_y = 0; }
H A DPlatformPathWinCE.cpp55 pp.m_x = c1x;
66 pp.m_x = c1x * a + c2x * b + c3x * c;
72 pp.m_x = c3x;
95 pp.m_x = c1x;
109 pp.m_x = c1x * a + c2x * b + c3x * c + c4x * d;
115 pp.m_x = c4x;
169 return point.m_x < origin.m_x ?
189 float m_x; member in struct:WebCore::PathVector
192 PathVector() : m_x(
[all...]
/external/webkit/Source/WebCore/rendering/
H A DInlineBox.h43 , m_x(0)
78 , m_x(x)
225 void setX(float x) { m_x = x; }
226 float x() const { return m_x; }
236 float logicalLeft() const { return isHorizontal() ? m_x : m_y; }
241 m_x = left;
249 int logicalTop() const { return isHorizontal() ? m_y : m_x; }
256 m_x = top;
266 FloatRect logicalFrameRect() const { return isHorizontal() ? IntRect(m_x, m_y, m_logicalWidth, logicalHeight()) : IntRect(m_y, m_x, m_logicalWidt
329 float m_x; member in class:WebCore::InlineBox
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.cpp892 : m_x(0)
901 m_x = x;
906 float x() const { return m_x; }
912 return m_x < other.m_x;
916 float m_x; member in class:WebCore::__anon11913::SweepEvent

Completed in 2786 milliseconds

12