/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
D | 15.8.2.5.js | 46 …array[item++] = new TestCase( SECTION, "Math.atan2.length", 2, Math.atan2.len… 48 …array[item++] = new TestCase( SECTION, "Math.atan2(NaN, 0)", Number.NaN, Math.atan2(Num… 49 …array[item++] = new TestCase( SECTION, "Math.atan2(null, null)", 0, Math.atan2(nul… 50 …tCase( SECTION, "Math.atan2(void 0, void 0)", Number.NaN, Math.atan2(void 0, void 0) ); 51 …em++] = new TestCase( SECTION, "Math.atan2()", Number.NaN, Math.atan2() ); 53 …array[item++] = new TestCase( SECTION, "Math.atan2(0, NaN)", Number.NaN, Math.atan2(0,… 54 …array[item++] = new TestCase( SECTION, "Math.atan2(1, 0)", Math.PI/2, Math.atan2(1,… 55 …array[item++] = new TestCase( SECTION, "Math.atan2(1,-0)", Math.PI/2, Math.atan2(1,… 56 …array[item++] = new TestCase( SECTION, "Math.atan2(0,0.001)", 0, Math.atan2(0,… 57 …array[item++] = new TestCase( SECTION, "Math.atan2(0,0)", 0, Math.atan2(0,… [all …]
|
/external/webkit/V8Binding/v8/test/mjsunit/regress/ |
D | regress-925537.js | 38 assertClose( Math.PI / 4, Math.atan2(pinf, pinf)); 39 assertClose(-Math.PI / 4, Math.atan2(ninf, pinf)); 40 assertClose( 3 * Math.PI / 4, Math.atan2(pinf, ninf)); 41 assertClose(-3 * Math.PI / 4, Math.atan2(ninf, ninf));
|
/external/skia/src/animator/ |
D | SkDisplayMath.cpp | 58 SK_FUNCTION(atan2), 130 SK_MEMBER_FUNCTION(atan2, Float), 173 case SK_FUNCTION(atan2): in executeFunction()
|
/external/webkit/V8Binding/v8/test/mjsunit/ |
D | to_number_order.js | 43 assertEquals(Math.atan2(1, 2), Math.atan2(v, w));
|
/external/webkit/JavaScriptCore/wtf/ |
D | MathExtras.h | 143 result = ::atan2(x, y); in wtf_atan2() 154 #define atan2(x, y) wtf_atan2(x, y) macro
|
/external/tesseract/ccstruct/ |
D | linlsq.cpp | 201 avg_angle = atan2 (dir.sigy, dir.sigx); in fit() 205 angle = atan2 (2 * a, b) / 2; in fit()
|
D | points.h | 91 return (float) atan2 ((double) ycoord, (double) xcoord); in angle() 254 return (float) atan2 (ycoord, xcoord); in ELISTIZEH_S()
|
/external/tesseract/classify/ |
D | fpoint.h | 42 #define AngleFrom(A,B) ( atan2((double) YDelta(A,B), \
|
D | mfx.cpp | 132 (atan2 (y2-y1, x2-x1)) : \
|
/external/webkit/SunSpider/ |
D | UNCOVERED | 73 Math.atan2
|
/external/skia/include/core/ |
D | SkFloatingPoint.h | 41 #define sk_float_atan2(y,x) (float)::atan2(y,x)
|
/external/icu4c/i18n/ |
D | astro.cpp | 448 result.set(atan2(sinL*cosE - tanB*sinE, cosL), in eclipticToEquatorial() 486 double azimuth = atan2(-cosD*cosL*sinH, sinD - sinL * ::sin(altitude)); in eclipticToHorizon() 1073 moonEclipLong = ::atan2(y*cos(moonI), x) + nodeLongitude; in getMoonPosition()
|
/external/webkit/WebCore/rendering/ |
D | RenderPath.cpp | 284 double inslope = rad2deg(atan2(inslopeChange.y(), inslopeChange.x())); in drawMarkerWithData() 285 double outslope = rad2deg(atan2(outslopeChange.y(), outslopeChange.x())); in drawMarkerWithData()
|
/external/tesseract/liblept/ |
D | affine.c | 1345 th3 = atan2((l_float64)(x1 - x3), (l_float64)(y1 - y3)); in pixAffineSequential() 1349 ph2 = atan2((l_float64)(y1 - y2), (l_float64)(x2s - x1)); in pixAffineSequential() 1355 th3p = atan2((l_float64)(x1p - x3p), (l_float64)(y1p - y3p)); in pixAffineSequential() 1359 ph2p = atan2((l_float64)(y1p - y2p), (l_float64)(x2sp - x1p)); in pixAffineSequential()
|
/external/webkit/WebCore/svg/ |
D | SVGRadialGradientElement.cpp | 105 double angle = atan2(attributes.fy() * 100.0, attributes.fx() * 100.0); in buildGradient()
|
D | SVGParserUtilities.cpp | 617 th0 = atan2(y0 - yc, x0 - xc); in calculateArc() 618 th1 = atan2(y1 - yc, x1 - xc); in calculateArc()
|
/external/webkit/JavaScriptCore/runtime/ |
D | MathObject.cpp | 140 return jsNumber(exec, atan2(args.at(0).toNumber(exec), args.at(1).toNumber(exec))); in mathProtoFuncATan2()
|
/external/proguard/src/proguard/gui/ |
D | default.pro | 66 public static double atan2(double,double);
|
D | boilerplate.pro | 127 public static double atan2(double,double);
|
/external/webkit/WebCore/platform/graphics/transforms/ |
D | TransformationMatrix.cpp | 505 return rotate(rad2deg(atan2(y, x))); in rotateFromVector()
|
/external/tesseract/textord/ |
D | tabfind.cpp | 1372 float angle = atan2(deskew.y(), deskew.x()); in Deskew()
|
/external/webkit/V8Binding/v8/src/ |
D | runtime.cc | 4100 result = atan2(x, y); in Runtime_Math_atan2()
|