Searched refs:normal (Results 1 – 4 of 4) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
D | PreferencesTest.java | 210 static final int normal = 0; field in PreferencesTest.MockInputStream 216 int result = normal; 226 case normal: in checkException()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 1003 double normal = StrictMath.scalb(0.2345, -25); in test_scalb_DI() local 1004 assertEquals(6.98864459991455E-9, normal); in test_scalb_DI() 1006 assertEquals(0.2345, StrictMath.scalb(normal, 25)); in test_scalb_DI() 1157 float normal = StrictMath.scalb(0.2345f, -25); in test_scalb_FI() local 1158 assertEquals(6.98864459991455E-9f, normal); in test_scalb_FI() 1160 assertEquals(0.2345f, StrictMath.scalb(normal, 25)); in test_scalb_FI()
|
D | MathTest.java | 1433 double normal = Math.scalb(0.2345, -25); in test_scalb_DI() local 1434 assertEquals(6.98864459991455E-9, normal); in test_scalb_DI() 1436 assertEquals(0.2345, Math.scalb(normal, 25)); in test_scalb_DI() 1586 float normal = Math.scalb(0.2345f, -25); in test_scalb_FI() local 1587 assertEquals(6.98864459991455E-9f, normal); in test_scalb_FI() 1589 assertEquals(0.2345f, Math.scalb(normal, 25)); in test_scalb_FI()
|
/libcore/ojluni/src/main/java/java/net/ |
D | URI.java | 2174 boolean normal = true; in needsNormalization() 2184 if (p > 1) normal = false; in needsNormalization() 2196 normal = false; in needsNormalization() 2208 normal = false; in needsNormalization() 2216 return normal ? -1 : ns; in needsNormalization()
|