Searched refs:y2 (Results 1 - 25 of 181) sorted by relevance

12345678

/external/clang/test/PCH/Inputs/
H A Dchain-external-defs2.h5 int y2; variable
/external/clang/test/PCH/
H A Dchain-external-defs.c27 // YB: @y2 = global i32 18
28 // YB-NOT: @y2 = global i32 18
29 int y2 = 18; variable
/external/valgrind/main/memcheck/tests/
H A Dbadrw.c11 short y2; local
22 y2 = *x2;
23 *x2 = y2;
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegCurvetoCubicSmooth.h31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
36 , m_y2(y2)
61 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
62 void setY2(float y2) argument
64 m_y2 = y2;
77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
100 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
[all...]
H A DSVGPathSegCurvetoCubic.h31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
38 , m_y2(y2)
77 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic
78 void setY2(float y2) argument
80 m_y2 = y2;
95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
118 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
[all...]
H A DSVGPathSegCurvetoCubicSmoothAbs.idl33 attribute [StrictTypeChecking] float y2;
H A DSVGPathSegCurvetoCubicSmoothRel.idl33 attribute [StrictTypeChecking] float y2;
H A DSVGLineElement.idl37 readonly attribute SVGAnimatedLength y2;
H A DSVGLinearGradientElement.idl32 readonly attribute SVGAnimatedLength y2;
H A DSVGPathSegCurvetoCubicAbs.idl35 attribute [StrictTypeChecking] float y2;
H A DSVGPathSegCurvetoCubicRel.idl35 attribute [StrictTypeChecking] float y2;
/external/skia/src/animator/
H A DSkDrawLine.cpp21 SK_MEMBER(y2, Float)
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
H A DSkDrawLine.h24 SkScalar y2; member in class:SkLine
/external/clang/test/CXX/temp/temp.param/
H A Dp15.cpp12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}} variable
/external/skia/src/svg/
H A DSkSVGLine.cpp17 SVG_ATTRIBUTE(y2)
28 SVG_ADD_ATTRIBUTE(y2);
/external/freetype/src/base/
H A Dftbbox.c93 /* y2 :: The coordinate of the control point. */
104 FT_Pos y2,
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
121 y2 = y1;
123 y3 = y2;
128 y1 = y3 = y1 - FT_MulDiv( y2
103 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
289 test_cubic_extrema( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Fixed u, FT_Pos* min, FT_Pos* max ) argument
333 BBox_Cubic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Pos* min, FT_Pos* max ) argument
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSTimingFunctionValue.h69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) argument
71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
77 double y2() const { return m_y2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) argument
84 , m_y2(y2)
/external/clang/test/SemaTemplate/
H A Dpartial-spec-instantiate.cpp37 int f(Y<int*> y, Y<float*> y2) { argument
38 return y.m + y2.m;
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
H A Djquery.flot.dashes.js72 y2 = points[i + 1];
77 if (y1 <= y2 && y1 < axisy.min) {
78 if (y2 < axisy.min) continue; // line segment is outside
80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
82 } else if (y2 <= y1 && y2 < axisy.min) {
84 x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
85 y2 = axisy.min;
89 if (y1 >= y2 && y1 > axisy.max) {
90 if (y2 > axis
[all...]
/external/clang/test/SemaCXX/
H A Dcxx0x-class.cpp26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}} member in struct:rdar8367341::A
H A Dwarn-literal-conversion.cpp10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
/external/skia/include/utils/
H A DSkCubicInterval.h14 SkScalar x2, SkScalar y2,
/external/skia/src/utils/
H A DSkCubicInterval.cpp50 SkScalar x2, SkScalar y2,
65 y2 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
49 SkEvalCubicInterval(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar unitX) argument
/external/qemu/android/skin/
H A Drect.c150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) {
170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
178 r.y2 = (a.y2 < b.y2) ? a.y2
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1229.js83 function h1(z2, y2) {
86 var local_y = y2 >> 1;
91 function h2(z2, y2, x2) {
94 var local_y = y2 >> 1;
99 function h3(z2, y2, x2) {
102 var local_y = y2 >> 1;

Completed in 433 milliseconds

12345678