Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DScannerTest.java4080 assertTrue(s.hasNextLong(10)); in test_hasNextLongI()
4082 assertTrue(s.hasNextLong(10)); in test_hasNextLongI()
4084 assertFalse(s.hasNextLong(10)); in test_hasNextLongI()
4093 assertTrue(s.hasNextLong(5)); in test_hasNextLongI()
4095 assertFalse(s.hasNextLong(5)); in test_hasNextLongI()
4104 assertFalse(s.hasNextLong(10)); in test_hasNextLongI()
4125 assertTrue(s.hasNextLong(10)); in test_hasNextLongI()
4127 assertTrue(s.hasNextLong(10)); in test_hasNextLongI()
4135 assertFalse(s.hasNextLong(10)); in test_hasNextLongI()
4143 assertTrue(s.hasNextLong(10)); in test_hasNextLongI()
[all …]
/libcore/ojluni/src/main/java/java/util/
DScanner.java2159 public boolean hasNextLong() { in hasNextLong() method in Scanner
2160 return hasNextLong(defaultRadix); in hasNextLong()
2173 public boolean hasNextLong(int radix) { in hasNextLong() method in Scanner