Home
last modified time | relevance | path

Searched refs:normal (Results 1 – 5 of 5) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
DPreferencesTest.java210 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/
DStrictMathTest.java1003 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()
DMathTest.java1430 double normal = Math.scalb(0.2345, -25); in test_scalb_DI() local
1431 assertEquals(6.98864459991455E-9, normal); in test_scalb_DI()
1433 assertEquals(0.2345, Math.scalb(normal, 25)); in test_scalb_DI()
1583 float normal = Math.scalb(0.2345f, -25); in test_scalb_FI() local
1584 assertEquals(6.98864459991455E-9f, normal); in test_scalb_FI()
1586 assertEquals(0.2345f, Math.scalb(normal, 25)); in test_scalb_FI()
/libcore/ojluni/src/main/java/java/net/
DURI.java2202 boolean normal = true; in needsNormalization()
2212 if (p > 1) normal = false; in needsNormalization()
2224 normal = false; in needsNormalization()
2236 normal = false; in needsNormalization()
2244 return normal ? -1 : ns; in needsNormalization()
/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKZonedDateTime.java615 LocalDateTime normal = LocalDateTime.of(2008, 6, 30, 11, 30, 10, 500);
616 ZonedDateTime test = ZonedDateTime.ofStrict(normal, OFFSET_0200, ZONE_PARIS);