Home
last modified time | relevance | path

Searched refs:floorKey (Results 1 – 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DTreeSet.java425 return m.floorKey(e); in floor()
DCollections.java1928 public K floorKey(K key) { return nm.floorKey(key); }
2921 public K floorKey(K key)
2922 { synchronized (mutex) { return nm.floorKey(key); } }
4122 public K floorKey(K key) { return nm.floorKey(key); }
DTreeMap.java733 public K floorKey(K key) { in floorKey() method in TreeMap
1141 public E floor(E e) { return m.floorKey(e); } in floor()
1554 public final K floorKey(K key) { in floorKey() method in TreeMap.NavigableSubMap
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListSet.java358 return m.floorKey(e); in floor()
DConcurrentSkipListMap.java2156 public K floorKey(K key) { in floorKey() method in ConcurrentSkipListMap
2369 public K floor(K e) { return m.floorKey(e); } in floor()
3013 public K floorKey(K key) { in floorKey() method in ConcurrentSkipListMap.SubMap
/libcore/ojluni/annotations/sdk/nullability/java/util/
DNavigableMap.annotated.java49 @libcore.util.Nullable public K floorKey(@libcore.util.NullFromTypeParam K key); in floorKey() method
DTreeMap.annotated.java80 @libcore.util.Nullable public K floorKey(@libcore.util.NullFromTypeParam K key) { throw new Runtime… in floorKey() method in TreeMap
/libcore/ojluni/src/test/java/util/concurrent/tck/
DTreeMapTest.java494 Object e1 = q.floorKey(three);
497 Object e2 = q.floorKey(six);
500 Object e3 = q.floorKey(one);
503 Object e4 = q.floorKey(zero);
1078 assertEq(map.floorKey(key), rs.floor(key));
DConcurrentSkipListMapTest.java613 Object e1 = q.floorKey(three);
616 Object e2 = q.floorKey(six);
619 Object e3 = q.floorKey(one);
622 Object e4 = q.floorKey(zero);
1273 assertEq(map.floorKey(key), rs.floor(key));
/libcore/jsr166-tests/src/test/java/jsr166/
DTreeMapTest.java471 Object e1 = q.floorKey(three);
474 Object e2 = q.floorKey(six);
477 Object e3 = q.floorKey(one);
480 Object e4 = q.floorKey(zero);
1055 assertEq(map.floorKey(key), rs.floor(key));
DConcurrentSkipListMapTest.java590 Object e1 = q.floorKey(three);
593 Object e2 = q.floorKey(six);
596 Object e3 = q.floorKey(one);
599 Object e4 = q.floorKey(zero);
1250 assertEq(map.floorKey(key), rs.floor(key));
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTreeMapTest.java1083 assertEquals(objArray[999].toString(), tm.floorKey(testint9999 in test_floorKey()
1085 assertEquals(objArray[100].toString(), tm.floorKey(testint10000 in test_floorKey()
1090 .floorKey(testint9999.toString())); in test_floorKey()
1091 assertEquals(testint10000.toString(), tm.floorKey(testint10000 in test_floorKey()
1094 tm.floorKey(testint10000); in test_floorKey()
1100 tm.floorKey(null); in test_floorKey()
1106 assertNull(tm.floorKey(testint9999.toString())); in test_floorKey()