HomeSort by relevance Sort by last modified time
    Searched defs:StrictMath (Results 1 - 7 of 7) sorted by null

  /dalvik/libcore/luni/src/main/java/java/lang/
StrictMath.java 23 * Class StrictMath provides basic math constants and operations such as
30 * the implementation of class StrictMath may be less efficient than that of
31 * class Math, as class StrictMath cannot utilize platform specific features
39 public final class StrictMath {
57 private StrictMath() {
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
StrictMathTest.java 26 private final double HYP = StrictMath.sqrt(2.0);
36 * @tests java.lang.StrictMath#abs(double)
40 // Test for method double java.lang.StrictMath.abs(double)
43 (StrictMath.abs(-1908.8976) == 1908.8976));
45 (StrictMath.abs(1908.8976) == 1908.8976));
49 * @tests java.lang.StrictMath#abs(float)
53 // Test for method float java.lang.StrictMath.abs(float)
55 (StrictMath.abs(-1908.8976f) == 1908.8976f));
57 (StrictMath.abs(1908.8976f) == 1908.8976f));
61 * @tests java.lang.StrictMath#abs(int
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 25 @TestTargetClass(StrictMath.class)
28 double HYP = StrictMath.sqrt(2.0);
38 * @tests java.lang.StrictMath#pow(double)
49 StrictMath.pow(-1.0000000000000002e+00,4.5035996273704970e+15));
51 StrictMath.pow(-9.9999999999999978e-01,4.035996273704970e+15));
54 StrictMath.pow(Double.MAX_VALUE, 0.0));
56 StrictMath.pow(Double.MAX_VALUE, -0.0));
58 StrictMath.pow(Double.MAX_VALUE, Double.NaN));
60 StrictMath.pow(Double.NaN, 1.0));
62 StrictMath.pow(1.1, Double.POSITIVE_INFINITY));
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 143 milliseconds