Searched refs:atan (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tests/CoreTests/android/core/
H A DMathPerformanceTest.java156 result = Math.atan(sDouble1);
157 result = Math.atan(sDouble1);
158 result = Math.atan(sDouble1);
159 result = Math.atan(sDouble1);
160 result = Math.atan(sDouble1);
161 result = Math.atan(sDouble1);
162 result = Math.atan(sDouble1);
163 result = Math.atan(sDouble1);
164 result = Math.atan(sDouble1);
165 result = Math.atan(sDouble
[all...]
H A DStrictMathTest.java105 * @tests java.lang.StrictMath#atan(double)
109 // Test for method double java.lang.StrictMath.atan(double)
110 double answer = StrictMath.tan(StrictMath.atan(1.0));
121 double answer = StrictMath.atan(StrictMath.tan(1.0));
705 StrictMath.tan(StrictMath.atan(1.0)) <= 1.0
706 || StrictMath.tan(StrictMath.atan(1.0)) >= 9.9999999999999983E-1);
H A DMathTest.java126 * @tests java.lang.Math#atan(double)
130 // Test for method double java.lang.Math.atan(double)
131 double answer = Math.tan(Math.atan(1.0));
142 double answer = Math.atan(Math.tan(1.0));
/frameworks/base/core/java/android/util/
H A DMathUtils.java131 public static float atan(float value) { method in class:MathUtils
132 return (float) Math.atan(value);
/frameworks/base/core/java/android/widget/
H A DOverScroller.java709 Math.atan((start-max) * TIME_COEF / velocity) / TIME_COEF;
730 Math.atan((start-min) * TIME_COEF / velocity) / TIME_COEF;
/frameworks/base/location/java/android/location/
H A DLocation.java291 double U1 = Math.atan((1.0 - f) * Math.tan(lat1));
292 double U2 = Math.atan((1.0 - f) * Math.tan(lat2));
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DSweepGradient_Delegate.java182 angle = (float) Math.atan(dy / dx);
/frameworks/base/core/java/android/hardware/
H A DGeomagneticField.java317 mGcLatitudeRad = (float) Math.atan(tlat * (latRad * altitudeKm + b2)
/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java451 final double angle = Math.atan(tan);

Completed in 247 milliseconds