Searched refs:higherKey (Results 1 – 12 of 12) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TreeMapTest.java | 1217 assertEquals(objArray[0].toString(), tm.higherKey(testint.toString())); in test_higherKey() 1218 assertEquals(objArray[101].toString(), tm.higherKey(testint100 in test_higherKey() 1220 assertEquals(objArray[101].toString(), tm.higherKey(testint10000 in test_higherKey() 1225 assertEquals(objArray[0].toString(), tm.higherKey(testint.toString())); in test_higherKey() 1226 assertEquals(testint10000.toString(), tm.higherKey(testint100 in test_higherKey() 1228 assertEquals(objArray[101].toString(), tm.higherKey(testint10000 in test_higherKey() 1230 assertNull(tm.higherKey(testint9999.toString())); in test_higherKey() 1232 tm.higherKey(testint100); in test_higherKey() 1238 tm.higherKey(null); in test_higherKey() 1244 assertNull(tm.higherKey(testint.toString())); in test_higherKey()
|
/libcore/ojluni/src/main/java/java/util/ |
D | TreeSet.java | 447 return m.higherKey(e); in higher()
|
D | Collections.java | 1930 public K higherKey(K key) { return nm.higherKey(key); } 2929 public K higherKey(K key) 2930 { synchronized (mutex) { return nm.higherKey(key); } } 4140 public K higherKey(K key) { return nm.higherKey(key); }
|
D | TreeMap.java | 777 public K higherKey(K key) { in higherKey() method in TreeMap 1143 public E higher(E e) { return m.higherKey(e); } in higher() 1546 public final K higherKey(K key) { in higherKey() method in TreeMap.NavigableSubMap
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 374 return m.higherKey(e); in higher()
|
D | ConcurrentSkipListMap.java | 2202 public K higherKey(K key) { in higherKey() method in ConcurrentSkipListMap 2371 public K higher(K e) { return m.higherKey(e); } in higher() 3021 public K higherKey(K key) { in higherKey() method in ConcurrentSkipListMap.SubMap
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | NavigableMap.annotated.java | 57 @libcore.util.Nullable public K higherKey(@libcore.util.NullFromTypeParam K key); in higherKey() method
|
D | TreeMap.annotated.java | 88 @libcore.util.Nullable public K higherKey(@libcore.util.NullFromTypeParam K key) { throw new Runtim… in higherKey() method in TreeMap
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | TreeMapTest.java | 476 Object e1 = q.higherKey(three); 479 Object e2 = q.higherKey(zero); 482 Object e3 = q.higherKey(five); 485 Object e4 = q.higherKey(six); 1079 assertEq(map.higherKey(key), rs.higher(key));
|
D | ConcurrentSkipListMapTest.java | 595 Object e1 = q.higherKey(three); 598 Object e2 = q.higherKey(zero); 601 Object e3 = q.higherKey(five); 604 Object e4 = q.higherKey(six); 1274 assertEq(map.higherKey(key), rs.higher(key));
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | TreeMapTest.java | 453 Object e1 = q.higherKey(three); 456 Object e2 = q.higherKey(zero); 459 Object e3 = q.higherKey(five); 462 Object e4 = q.higherKey(six); 1056 assertEq(map.higherKey(key), rs.higher(key));
|
D | ConcurrentSkipListMapTest.java | 572 Object e1 = q.higherKey(three); 575 Object e2 = q.higherKey(zero); 578 Object e3 = q.higherKey(five); 581 Object e4 = q.higherKey(six); 1251 assertEq(map.higherKey(key), rs.higher(key));
|