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

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegLinetoHorizontal.h32 , m_x(x)
36 float x() const { return m_x; }
39 m_x = x;
44 float m_x; member in class:WebCore::SVGPathSegLinetoHorizontal
H A DSVGGlyphRefElement.h40 float x() const { return m_x; }
61 float m_x; member in class:WebCore::FINAL
H A DSVGPathSegCurvetoCubicSmooth.h32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::SVGPathSegCurvetoQuadratic
H A DSVGPathSegWithContext.h78 float x() const { return m_x; }
81 m_x = x;
95 , m_x(x)
101 float m_x; member in class:WebCore::SVGPathSegSingleCoordinate
H A DSVGPathSegArc.h32 , m_x(x)
42 float x() const { return m_x; }
45 m_x = x;
92 float m_x; member in class:WebCore::SVGPathSegArc
H A DSVGPathSegCurvetoCubic.h32 , m_x(x)
41 float x() const { return m_x; }
44 m_x = x;
84 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/chromium_org/third_party/WebKit/Source/core/page/
H A DDOMPoint.h46 float x() const { return m_x; }
49 void setX(float x) { m_x = x; }
54 : m_x(x)
60 float m_x; member in class:WebCore::DOMPoint
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleTransformData.h47 Length m_x; member in class:WebCore::StyleTransformData
H A DBasicShapes.h71 Length x() const { return m_x; }
78 void setX(Length x) { m_x = x; }
101 Length m_x; member in class:WebCore::BasicShapeRectangle
/external/chromium_org/third_party/WebKit/Source/core/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.h46 double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
50 Length x() const { return m_x; }
55 virtual bool isIdentity() const { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); }
65 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
71 return m_x.type() == Percent || m_y.type() == Percent;
77 : m_x(tx)
85 Length m_x; member in class:WebCore::TranslateTransformOperation
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutEngine.h92 float m_x; member in class:WebCore::SVGTextLayoutEngine
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DIntPoint.h47 IntPoint() : m_x(0), m_y(0) { }
48 IntPoint(int x, int y) : m_x(x), m_y(y) { }
49 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
53 int x() const { return m_x; }
56 void setX(int x) { m_x = x; }
61 void move(int dx, int dy) { m_x += dx; m_y += dy; }
64 m_x = lroundf(static_cast<float>(m_x * sx));
70 return IntPoint(m_x > other.m_x
103 int m_x, m_y; member in class:WebCore::IntPoint
[all...]
H A DFloatPoint.h57 FloatPoint() : m_x(0), m_y(0) { }
58 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
61 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { }
67 float x() const { return m_x; }
70 void setX(float x) { m_x = x; }
74 m_x = x;
79 m_x += dx;
84 m_x += a.width();
90 m_x += a.width();
95 m_x
149 float m_x, m_y; member in class:WebCore::FloatPoint
[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...]
H A DLayoutPoint.h42 LayoutPoint() : m_x(0), m_y(0) { }
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()) { }
50 LayoutUnit x() const { return m_x; }
53 void setX(LayoutUnit x) { m_x = x; }
58 void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; }
61 m_x *= sx;
67 return LayoutPoint(std::max(m_x, othe
86 LayoutUnit m_x, m_y; member in class:WebCore::LayoutPoint
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionData.h49 double x() const { return m_x; }
56 double m_x; member in class:WebCore::DeviceMotionData::Acceleration
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.h69 CSSPrimitiveValue* x() const { return m_x.get(); }
76 void setX(PassRefPtr<CSSPrimitiveValue> x) { m_x = x; }
94 RefPtr<CSSPrimitiveValue> m_x; member in class:WebCore::CSSBasicShapeRectangle
/external/eigen/unsupported/test/
H A DNonLinearOptimization.cpp634 static const double m_x[54]; member in struct:chwirut2_functor
643 double x = m_x[i];
654 double x = m_x[i];
664 const double chwirut2_functor::m_x[54] = { 0.500E0, 1.000E0, 1.750E0, 3.750E0, 5.750E0, 0.875E0, 2.250E0, 3.250E0, 5.250E0, 0.750E0, 1.750E0, 2.750E0, 4.750E0, 0.625E0, 1.250E0, 2.250E0, 4.250E0, .500E0, 3.000E0, .750E0, 3.000E0, 1.500E0, 6.000E0, 3.000E0, 6.000E0, 1.500E0, 3.000E0, .500E0, 2.000E0, 4.000E0, .750E0, 2.000E0, 5.000E0, .750E0, 2.250E0, 3.750E0, 5.750E0, 3.000E0, .750E0, 2.500E0, 4.000E0, .750E0, 2.500E0, 4.000E0, .750E0, 2.500E0, 4.000E0, .500E0, 6.000E0, 3.000E0, .500E0, 2.750E0, .500E0, 1.750E0}; member in class:chwirut2_functor
721 static const double m_x[14]; member in struct:misra1a_functor
728 fvec[i] = b[0]*(1.-exp(-b[1]*m_x[i])) - m_y[i] ;
738 fjac(i,0) = (1.-exp(-b[1]*m_x[i]));
739 fjac(i,1) = (b[0]*m_x[i]*exp(-b[1]*m_x[i]));
744 const double misra1a_functor::m_x[1 member in class:misra1a_functor
795 static const double m_x[236]; member in struct:hahn1_functor
831 const double hahn1_functor::m_x[236] = { 24.41E0 , 34.82E0 , 44.09E0 , 45.07E0 , 54.98E0 , 65.51E0 , 70.53E0 , 75.70E0 , 89.57E0 , 91.14E0 , 96.40E0 , 97.19E0 , 114.26E0 , 120.25E0 , 127.08E0 , 133.55E0 , 133.61E0 , 158.67E0 , 172.74E0 , 171.31E0 , 202.14E0 , 220.55E0 , 221.05E0 , 221.39E0 , 250.99E0 , 268.99E0 , 271.80E0 , 271.97E0 , 321.31E0 , 321.69E0 , 330.14E0 , 333.03E0 , 333.47E0 , 340.77E0 , 345.65E0 , 373.11E0 , 373.79E0 , 411.82E0 , 419.51E0 , 421.59E0 , 422.02E0 , 422.47E0 , 422.61E0 , 441.75E0 , 447.41E0 , 448.7E0 , 472.89E0 , 476.69E0 , 522.47E0 , 522.62E0 , 524.43E0 , 546.75E0 , 549.53E0 , 575.29E0 , 576.00E0 , 625.55E0 , 20.15E0 , 28.78E0 , 29.57E0 , 37.41E0 , 39.12E0 , 50.24E0 , 61.38E0 , 66.25E0 , 73.42E0 , 95.52E0 , 107.32E0 , 122.04E0 , 134.03E0 , 163.19E0 , 163.48E0 , 175.70E0 , 179.86E0 , 211.27E0 , 217.78E0 , 219.14E0 , 262.52E0 , 268.01E0 , 268.62E0 , 336.25E0 , 337.23E0 , 339.33E0 , 427.38E0 , 428.58E0 , 432.68E0 , 528.99E0 , 531.08E0 , 628.34E0 , 253.24E0 , 273.13E0 , 273.66E0 , 282.10E0 , 346.62E0 , 347.19E0 , 348.78E0 , 351.18E0 , 450.10E0 , 450.35E0 , 451.92E0 , 455.56E0 , 552.22E0 , 553.56E0 , 555.74E0 , 652.59E0 , 656.20E0 , 14.13E0 , 20.41E0 , 31.30E0 , 33.84E0 , 39.70E0 , 48.83E0 , 54.50E0 , 60.41E0 , 72.77E0 , 75.25E0 , 86.84E0 , 94.88E0 , 96.40E0 , 117.37E0 , 139.08E0 , 147.73E0 , 158.63E0 , 161.84E0 , 192.11E0 , 206.76E0 , 209.07E0 , 213.32E0 , 226.44E0 , 237.12E0 , 330.90E0 , 358.72E0 , 370.77E0 , 372.72E0 , 396.24E0 , 416.59E0 , 484.02E0 , 495.47E0 , 514.78E0 , 515.65E0 , 519.47E0 , 544.47E0 , 560.11E0 , 620.77E0 , 18.97E0 , 28.93E0 , 33.91E0 , 40.03E0 , 44.66E0 , 49.87E0 , 55.16E0 , 60.90E0 , 72.08E0 , 85.15E0 , 97.06E0 , 119.63E0 , 133.27E0 , 143.84E0 , 161.91E0 , 180.67E0 , 198.44E0 , 226.86E0 , 229.65E0 , 258.27E0 , 273.77E0 , 339.15E0 , 350.13E0 , 362.75E0 , 371.03E0 , 393.32E0 , 448.53E0 , 473.78E0 , 511.12E0 , 524.70E0 , 548.75E0 , 551.64E0 , 574.02E0 , 623.86E0 , 21.46E0 , 24.33E0 , 33.43E0 , 39.22E0 , 44.18E0 , 55.02E0 , 94.33E0 , 96.44E0 , 118.82E0 , 128.48E0 , 141.94E0 , 156.92E0 , 171.65E0 , 190.00E0 , 223.26E0 , 223.88E0 , 231.50E0 , 265.05E0 , 269.44E0 , 271.78E0 , 273.46E0 , 334.61E0 , 339.79E0 , 349.52E0 , 358.18E0 , 377.98E0 , 394.77E0 , 429.66E0 , 468.22E0 , 487.27E0 , 519.54E0 , 523.03E0 , 612.99E0 , 638.59E0 , 641.36E0 , 622.05E0 , 631.50E0 , 663.97E0 , 646.9E0 , 748.29E0 , 749.21E0 , 750.14E0 , 647.04E0 , 646.89E0 , 746.9E0 , 748.43E0 , 747.35E0 , 749.27E0 , 647.61E0 , 747.78E0 , 750.51E0 , 851.37E0 , 845.97E0 , 847.54E0 , 849.93E0 , 851.61E0 , 849.75E0 , 850.98E0 , 848.23E0}; member in class:hahn1_functor
[all...]

Completed in 141 milliseconds