/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Collection.annotated.java | 43 public java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] toArray(); in toArray() method 45 public <T> T @libcore.util.NonNull [] toArray(T @libcore.util.NonNull [] a); in toArray() method 47 @libcore.util.NonNull public default <T> T @libcore.util.NonNull [] toArray(@libcore.util.NonNull j… in toArray() method
|
D | AbstractCollection.annotated.java | 43 public java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] toArray() { throw new Runti… in toArray() method in AbstractCollection 45 public <T> T @libcore.util.NonNull [] toArray(T @libcore.util.NonNull [] a) { throw new RuntimeExce… in toArray() method in AbstractCollection
|
D | ArrayDeque.annotated.java | 106 public java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] toArray() { throw new Runti… in toArray() method in ArrayDeque 108 public <T> T @libcore.util.NonNull [] toArray(T @libcore.util.NonNull [] a) { throw new RuntimeExce… in toArray() method in ArrayDeque
|
D | LinkedList.annotated.java | 111 public java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] toArray() { throw new Runti… in toArray() method in LinkedList 113 public <T> T @libcore.util.NonNull [] toArray(T @libcore.util.NonNull [] a) { throw new RuntimeExce… in toArray() method in LinkedList
|
D | ArrayList.annotated.java | 56 public java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] toArray() { throw new Runti… in toArray() method in ArrayList 59 public <T> T @libcore.util.NonNull [] toArray(T @libcore.util.NonNull [] a) { throw new RuntimeExce… in toArray() method in ArrayList
|
/libcore/ojluni/src/main/java/java/util/ |
D | Collection.java | 322 Object[] toArray(); in toArray() method 375 <T> T[] toArray(T[] a); in toArray() method 412 default <T> T[] toArray(IntFunction<T[]> generator) { in toArray() method
|
D | ReverseOrderDequeView.java | 160 public Object[] toArray() { in toArray() method in ReverseOrderDequeView 165 public <T> T[] toArray(T[] a) { in toArray() method in ReverseOrderDequeView 169 public <T> T[] toArray(IntFunction<T[]> generator) { in toArray() method in ReverseOrderDequeView
|
D | ImmutableCollections.java | 528 public Object[] toArray() { in toArray() method in SubList 538 public <T> T[] toArray(T[] a) { in toArray() method in SubList 634 public Object[] toArray() { in toArray() method in List12 644 public <T> T[] toArray(T[] a) { in toArray() method in List12 701 public Object[] toArray() { in toArray() method in ListN 707 public <T> T[] toArray(T[] a) { in toArray() method in ListN 866 public Object[] toArray() { in toArray() method 878 public <T> T[] toArray(T[] a) { in toArray() method
|
D | AbstractCollection.java | 139 public Object[] toArray() { in toArray() method in AbstractCollection 180 public <T> T[] toArray(T[] a) { in toArray() method in AbstractCollection
|
D | HashSet.java | 375 public Object[] toArray() { in toArray() method in HashSet 380 public <T> T[] toArray(T[] a) { in toArray() method in HashSet
|
D | LinkedHashSet.java | 318 public Object[] toArray() { return map().keysToArray(new Object[map.size()], true); } in reversed() method in LinkedHashSet.ReverseLinkedHashSetView 319 public <T> T[] toArray(T[] a) { return map().keysToArray(map.prepareArray(a), true); } in reversed() method in LinkedHashSet.ReverseLinkedHashSetView
|
D | ReverseOrderSortedSetView.java | 169 public Object[] toArray() { in toArray() method in ReverseOrderSortedSetView 174 public <T> T[] toArray(T[] a) { in toArray() method in ReverseOrderSortedSetView 178 public <T> T[] toArray(IntFunction<T[]> generator) { in toArray() method in ReverseOrderSortedSetView
|
D | ReverseOrderListView.java | 285 public Object[] toArray() { in toArray() method in ReverseOrderListView 290 public <T> T[] toArray(T[] a) { in toArray() method in ReverseOrderListView 294 public <T> T[] toArray(IntFunction<T[]> generator) { in toArray() method in ReverseOrderListView
|
/libcore/ojluni/annotations/flagged_api/java/util/ |
D | HashSet.annotated.java | 58 public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } in toArray() method in HashSet 60 public <T> T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } in toArray() method in HashSet
|
D | LinkedList.annotated.java | 110 public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } in toArray() method in LinkedList 112 public <T> T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } in toArray() method in LinkedList
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | SequencedCollectionTest.java | 53 public Object[] toArray() { in toArray() method in SequencedCollectionTest.EmptySequencedCollection 58 public <T> T[] toArray(T[] a) { in toArray() method in SequencedCollectionTest.EmptySequencedCollection
|
D | OldCollectionsTest.java | 397 public Object[] toArray() { in toArray() method in OldCollectionsTest.Mock_Collection 401 public Object[] toArray(Object[] a) { in toArray() method in OldCollectionsTest.Mock_Collection 453 public Object[] toArray() { in toArray() method in OldCollectionsTest.Mock_WrongCollection 457 public Object[] toArray(Object[] a) { in toArray() method in OldCollectionsTest.Mock_WrongCollection
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | CopyOnWriteArraySet.java | 64 public java.lang.Object[] toArray() { in toArray() method in CopyOnWriteArraySet 68 public <T> T[] toArray(T[] a) { in toArray() method in CopyOnWriteArraySet
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArraySet.java | 176 public Object[] toArray() { in toArray() method in CopyOnWriteArraySet 221 public <T> T[] toArray(T[] a) { in toArray() method in CopyOnWriteArraySet
|
D | DelayQueue.java | 404 public Object[] toArray() { in toArray() method in DelayQueue 449 public <T> T[] toArray(T[] a) { in toArray() method in DelayQueue
|
/libcore/ojluni/src/test/java/util/SequencedCollection/ |
D | SimpleSortedSet.java | 108 public Object[] toArray() { in toArray() method in SimpleSortedSet 112 public <T> T[] toArray(T[] a) { in toArray() method in SimpleSortedSet
|
D | SimpleList.java | 105 public Object[] toArray() { in toArray() method in SimpleList 109 public <T> T[] toArray(T[] a) { in toArray() method in SimpleList
|
D | SimpleDeque.java | 105 public Object[] toArray() { in toArray() method in SimpleDeque 109 public <T> T[] toArray(T[] a) { in toArray() method in SimpleDeque
|
/libcore/luni/src/test/androidsdk34/src/libcore/android34/java/util/ |
D | ListTest.java | 62 public Object[] toArray() { in toArray() method in ListTest.MyList 67 public <T> T[] toArray(T[] a) { in toArray() method in ListTest.MyList
|
/libcore/ojluni/src/test/java/text/testlib/ |
D | HexDumpReader.java | 104 byte[] toArray() { in toArray() method in HexDumpReader.ByteArrayBuilder
|