Searched refs:checkedNavigableSet (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | Collections.java | 3379 public static <E> NavigableSet<E> checkedNavigableSet(NavigableSet<E> s, 3406 { return checkedNavigableSet(ns.descendingSet(), type); } 3408 {return checkedNavigableSet(ns.descendingSet(), type).iterator(); } 3411 return checkedNavigableSet(ns.subSet(fromElement, true, toElement, false), type); 3414 return checkedNavigableSet(ns.headSet(toElement, false), type); 3417 return checkedNavigableSet(ns.tailSet(fromElement, true), type); 3421 … return checkedNavigableSet(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), type); 3425 return checkedNavigableSet(ns.headSet(toElement, inclusive), type); 3429 return checkedNavigableSet(ns.tailSet(fromElement, inclusive), type); 4179 return checkedNavigableSet(nm.navigableKeySet(), keyType); [all …]
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | CollectionsTest.java | 382 NavigableSet set = Collections.checkedNavigableSet(new TreeSet<>(), String.class); in test_checkedNavigableSet() 399 NavigableSet set = Collections.checkedNavigableSet(new TreeSet<>(), String.class); in test_checkedNavigableSet_isChecked()
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Collections.annotated.java | 114 …atic <E> java.util.NavigableSet<@libcore.util.NullFromTypeParam E> checkedNavigableSet(@libcore.ut… in checkedNavigableSet() method in Collections
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Collections.java | 260 public static <E> java.util.NavigableSet<E> checkedNavigableSet( in checkedNavigableSet() method in Collections
|
/libcore/api/ |
D | current.txt | 12621 …method @NonNull public static <E> java.util.NavigableSet<E> checkedNavigableSet(@NonNull java.util…
|