Home
last modified time | relevance | path

Searched refs:nb (Results 1 – 2 of 2) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DByteTest.java398 Byte nb = new Byte("-128");
400 && (nb.byteValue() == (byte) -128));
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DDecimalFormatTest.java341 Number nb = df.parse("" + Long.MIN_VALUE, pos); in test_parse_returnType() local
342 assertTrue(nb instanceof Long); in test_parse_returnType()
349 nb = df.parse("" + Long.MAX_VALUE, pos); in test_parse_returnType()
350 assertTrue(nb instanceof Long); in test_parse_returnType()
358 nb = df.parse("invalid", pos); in test_parse_returnType()
359 assertNull(nb); in test_parse_returnType()