Home
last modified time | relevance | path

Searched refs:checkedNavigableMap (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/test/java/util/Collections/
DCheckedMapBash.java180 … (Supplier) () -> Collections.checkedNavigableMap(new TreeMap(), Integer.class, Integer.class)}, in makeCheckedMaps()
182 …(Supplier) () -> Collections.checkedNavigableMap(new TreeMap(Collections.reverseOrder()), Integer.… in makeCheckedMaps()
184 …(Supplier) () -> Collections.checkedNavigableMap(new TreeMap().descendingMap(), Integer.class, Int… in makeCheckedMaps()
/libcore/luni/src/test/java/libcore/java/util/
DCollectionsTest.java59 import static java.util.Collections.checkedNavigableMap;
295 NavigableMap<String, Integer> map = checkedNavigableMap( in test_checkedNavigableMap_replaceAll()
306 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_putIfAbsent()
313 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_remove()
320 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_replace$K$V()
327 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_replace$K$V$V()
334 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_computeIfAbsent()
341 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_computeIfPresent()
347 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_compute()
353 checkedNavigableMap(new TreeMap<>(), Integer.class, Double.class); in test_checkedNavigableMap_merge()
[all …]
/libcore/ojluni/src/test/java/util/Map/
DLockStep.java114 Collections.checkedNavigableMap(new TreeMap(), Integer.class, Integer.class), in testLockStep()
/libcore/ojluni/src/main/java/java/util/
DCollections.java4444 public static <K,V> NavigableMap<K,V> checkedNavigableMap(NavigableMap<K, V> m,
4537 return checkedNavigableMap(nm.descendingMap(), keyType, valueType);
4554 return checkedNavigableMap(nm.subMap(fromKey, true, toKey, false),
4560 return checkedNavigableMap(nm.headMap(toKey, false), keyType, valueType);
4565 return checkedNavigableMap(nm.tailMap(fromKey, true), keyType, valueType);
4569 …return checkedNavigableMap(nm.subMap(fromKey, fromInclusive, toKey, toInclusive), keyType, valueTy…
4573 return checkedNavigableMap(nm.headMap(toKey, inclusive), keyType, valueType);
4577 return checkedNavigableMap(nm.tailMap(fromKey, inclusive), keyType, valueType);
/libcore/ojluni/annotations/flagged_api/java/util/
DCollections.annotated.java131 public static <K, V> java.util.NavigableMap<K,V> checkedNavigableMap(java.util.NavigableMap<K,V> m,… in checkedNavigableMap() method in Collections
/libcore/ojluni/annotations/sdk/nullability/java/util/
DCollections.annotated.java124 …bcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> checkedNavigableMap(@libcore.ut… in checkedNavigableMap() method in Collections
/libcore/ojluni/src/test/java/util/SequencedCollection/
DBasicMap.java71 return Collections.checkedNavigableMap(map, String.class, Integer.class); in cknav()
/libcore/ojluni/src/test/java/util/Collection/
DMOAT.java135 …testMap(Collections.checkedNavigableMap(new TreeMap<Integer,Integer>(), Integer.class, Integer.cla… in realMain()
/libcore/ojluni/annotations/hiddenapi/java/util/
DCollections.java280 public static <K, V> java.util.NavigableMap<K, V> checkedNavigableMap( in checkedNavigableMap() method in Collections
/libcore/api/
Dcurrent.txt13620 …method @NonNull public static <K, V> java.util.NavigableMap<K,V> checkedNavigableMap(@NonNull java…