Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DScannerTest.java1777 assertEquals(123, s.nextShort(10)); in test_nextShortI()
1778 assertEquals(456, s.nextShort(10)); in test_nextShortI()
1780 s.nextShort(10); in test_nextShortI()
1787 assertEquals(38, s.nextShort(5)); in test_nextShortI()
1789 s.nextShort(5); in test_nextShortI()
1797 s.nextShort(10); in test_nextShortI()
1809 s.nextShort(10); in test_nextShortI()
1815 assertEquals(23456, s.nextShort(10)); in test_nextShortI()
1816 assertEquals(23456, s.nextShort(10)); in test_nextShortI()
1824 s.nextShort(10); in test_nextShortI()
[all …]
/libcore/ojluni/src/main/java/java/util/
DScanner.java1960 public short nextShort() { in nextShort() method in Scanner
1961 return nextShort(defaultRadix); in nextShort()
1990 public short nextShort(int radix) { in nextShort() method in Scanner