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

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegLinetoVertical.h32 , m_y(y)
36 float y() const { return m_y; }
39 m_y = y;
44 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
H A DSVGGlyphRefElement.h42 float y() const { return m_y; }
62 float m_y; member in class:WebCore::FINAL
H A DSVGPathSegCurvetoCubicSmooth.h33 , m_y(y)
46 float y() const { return m_y; }
49 m_y = y;
69 float m_y; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h33 , m_y(y)
46 float y() const { return m_y; }
49 m_y = y;
69 float m_y; member in class:WebCore::SVGPathSegCurvetoQuadratic
H A DSVGPathSegWithContext.h85 float y() const { return m_y; }
88 m_y = y;
96 , m_y(y)
102 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
H A DSVGPathSegArc.h33 , m_y(y)
49 float y() const { return m_y; }
52 m_y = y;
93 float m_y; member in class:WebCore::SVGPathSegArc
H A DSVGPathSegCurvetoCubic.h33 , m_y(y)
48 float y() const { return m_y; }
51 m_y = y;
85 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/chromium_org/third_party/WebKit/Source/core/page/
H A DDOMPoint.h47 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/core/rendering/style/
H A DStyleTransformData.h48 Length m_y; member in class:WebCore::StyleTransformData
H A DBasicShapes.h72 Length y() const { return m_y; }
79 void setY(Length y) { m_y = y; }
100 Length m_y; member in class:WebCore::BasicShapeRectangle
/external/chromium_org/third_party/WebKit/Source/core/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.h47 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); }
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;
78 , m_y(ty)
86 Length m_y; member in class:WebCore::TranslateTransformOperation
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutEngine.h93 float m_y; 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()) { }
54 int y() const { return m_y; }
57 void setY(int y) { m_y = y; }
61 void move(int dx, int dy) { m_x += dx; m_y += dy; }
65 m_y = lroundf(static_cast<float>(m_y * sy));
71 m_y > other.m_y
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()) { }
68 float y() const { return m_y; }
71 void setY(float y) { m_y = y; }
75 m_y = y;
80 m_y += dy;
85 m_y += a.height();
91 m_y += a.height();
96 m_y
149 float m_x, m_y; member in class:WebCore::FloatPoint
[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...]
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()) { }
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, othe
86 LayoutUnit m_x, m_y; member in class:WebCore::LayoutPoint
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java78 private int m_y; field in class:PropertyTableTooltipHelper
96 m_y = y;
160 tooltipLocation = m_table.toDisplay(new Point(startX, m_y));
162 tooltipLocation = m_table.toDisplay(new Point(startX, m_y + m_rowHeight));
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionData.h50 double y() const { return m_y; }
57 double m_y; member in class:WebCore::DeviceMotionData::Acceleration
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.h70 CSSPrimitiveValue* y() const { return m_y.get(); }
77 void setY(PassRefPtr<CSSPrimitiveValue> y) { m_y = y; }
93 RefPtr<CSSPrimitiveValue> m_y; member in class:WebCore::CSSBasicShapeRectangle
/external/eigen/unsupported/test/
H A DNonLinearOptimization.cpp635 static const double m_y[54]; member in struct:chwirut2_functor
644 fvec[i] = exp(-b[0]*x)/(b[1]+b[2]*x) - m_y[i];
665 const double chwirut2_functor::m_y[54] = { 92.9000E0 ,57.1000E0 ,31.0500E0 ,11.5875E0 ,8.0250E0 ,63.6000E0 ,21.4000E0 ,14.2500E0 ,8.4750E0 ,63.8000E0 ,26.8000E0 ,16.4625E0 ,7.1250E0 ,67.3000E0 ,41.0000E0 ,21.1500E0 ,8.1750E0 ,81.5000E0 ,13.1200E0 ,59.9000E0 ,14.6200E0 ,32.9000E0 ,5.4400E0 ,12.5600E0 ,5.4400E0 ,32.0000E0 ,13.9500E0 ,75.8000E0 ,20.0000E0 ,10.4200E0 ,59.5000E0 ,21.6700E0 ,8.5500E0 ,62.0000E0 ,20.2000E0 ,7.7600E0 ,3.7500E0 ,11.8100E0 ,54.7000E0 ,23.7000E0 ,11.5500E0 ,61.3000E0 ,17.7000E0 ,8.7400E0 ,59.2000E0 ,16.3000E0 ,8.6200E0 ,81.0000E0 ,4.8700E0 ,14.6200E0 ,81.7000E0 ,17.1700E0 ,81.3000E0 ,28.9000E0 }; member in class:chwirut2_functor
722 static const double m_y[14]; member in struct:misra1a_functor
728 fvec[i] = b[0]*(1.-exp(-b[1]*m_x[i])) - m_y[i] ;
745 const double misra1a_functor::m_y[14] = { 10.07E0, 14.73E0, 17.94E0, 23.93E0, 29.61E0, 35.18E0, 40.02E0, 44.82E0, 50.76E0, 55.05E0, 61.01E0, 66.40E0, 75.47E0, 81.78E0}; member in class:misra1a_functor
798 static const double m_y[236] = { .591E0 , 1.547E0 , 2.902E0 , 2.894E0 , 4.703E0 , 6.307E0 , 7.03E0 , 7.898E0 , 9.470E0 , 9.484E0 , 10.072E0 , 10.163E0 , 11.615E0 , 12.005E0 , 12.478E0 , 12.982E0 , 12.970E0 , 13.926E0 , 14.452E0 , 14.404E0 , 15.190E0 , 15.550E0 , 15.528E0 , 15.499E0 , 16.131E0 , 16.438E0 , 16.387E0 , 16.549E0 , 16.872E0 , 16.830E0 , 16.926E0 , 16.907E0 , 16.966E0 , 17.060E0 , 17.122E0 , 17.311E0 , 17.355E0 , 17.668E0 , 17.767E0 , 17.803E0 , 17.765E0 , 17.768E0 , 17.736E0 , 17.858E0 , 17.877E0 , 17.912E0 , 18.046E0 , 18.085E0 , 18.291E0 , 18.357E0 , 18.426E0 , 18.584E0 , 18.610E0 , 18.870E0 , 18.795E0 , 19.111E0 , .367E0 , .796E0 , 0.892E0 , 1.903E0 , 2.150E0 , 3.697E0 , 5.870E0 , 6.421E0 , 7.422E0 , 9.944E0 , 11.023E0 , 11.87E0 , 12.786E0 , 14.067E0 , 13.974E0 , 14.462E0 , 14.464E0 , 15.381E0 , 15.483E0 , 15.59E0 , 16.075E0 , 16.347E0 , 16.181E0 , 16.915E0 , 17.003E0 , 16.978E0 , 17.756E0 , 17.808E0 , 17.868E0 , 18.481E0 , 18.486E0 , 19.090E0 , 16.062E0 , 16.337E0 , 16.345E0 , 16.388E0 , 17.159E0 , 17.116E0 , 17.164E0 , 17.123E0 , 17.979E0 , 17.974E0 , 18.007E0 , 17.993E0 , 18.523E0 , 18.669E0 , 18.617E0 , 19.371E0 , 19.330E0 , 0.080E0 , 0.248E0 , 1.089E0 , 1.418E0 , 2.278E0 , 3.624E0 , 4.574E0 , 5.556E0 , 7.267E0 , 7.695E0 , 9.136E0 , 9.959E0 , 9.957E0 , 11.600E0 , 13.138E0 , 13.564E0 , 13.871E0 , 13.994E0 , 14.947E0 , 15.473E0 , 15.379E0 , 15.455E0 , 15.908E0 , 16.114E0 , 17.071E0 , 17.135E0 , 17.282E0 , 17.368E0 , 17.483E0 , 17.764E0 , 18.185E0 , 18.271E0 , 18.236E0 , 18.237E0 , 18.523E0 , 18.627E0 , 18.665E0 , 19.086E0 , 0.214E0 , 0.943E0 , 1.429E0 , 2.241E0 , 2.951E0 , 3.782E0 , 4.757E0 , 5.602E0 , 7.169E0 , 8.920E0 , 10.055E0 , 12.035E0 , 12.861E0 , 13.436E0 , 14.167E0 , 14.755E0 , 15.168E0 , 15.651E0 , 15.746E0 , 16.216E0 , 16.445E0 , 16.965E0 , 17.121E0 , 17.206E0 , 17.250E0 , 17.339E0 , 17.793E0 , 18.123E0 , 18.49E0 , 18.566E0 , 18.645E0 , 18.706E0 , 18.924E0 , 19.1E0 , 0.375E0 , 0.471E0 , 1.504E0 , 2.204E0 , 2.813E0 , 4.765E0 , 9.835E0 , 10.040E0 , 11.946E0 , 12.596E0 , 13.303E0 , 13.922E0 , 14.440E0 , 14.951E0 , 15.627E0 , 15.639E0 , 15.814E0 , 16.315E0 , 16.334E0 , 16.430E0 , 16.423E0 , 17.024E0 , 17.009E0 , 17.165E0 , 17.134E0 , 17.349E0 , 17.576E0 , 17.848E0 , 18.090E0 , 18.276E0 , 18.404E0 , 18.519E0 , 19.133E0 , 19.074E0 , 19.239E0 , 19.280E0 , 19.101E0 , 19.398E0 , 19.252E0 , 19.89E0 , 20.007E0 , 19.929E0 , 19.268E0 , 19.324E0 , 20.049E0 , 20.107E0 , 20.062E0 , 20.065E0 , 19.286E0 , 19.972E0 , 20.088E0 , 20.743E0 , 20.83E0 , 20.935E0 , 21.035E0 , 20.93E0 , 21.074E0 , 21.085E0 , 20.935E0 }; local
806 fvec[i] = (b[0]+b[1]*x+b[2]*xx+b[3]*xxx) / (1.+b[4]*x+b[5]*xx+b[6]*xxx) - m_y[i];

Completed in 553 milliseconds