/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 | 327 Object[] toArray(); in toArray() method 380 <T> T[] toArray(T[] a); in toArray() method 417 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 | 535 public Object[] toArray() { in toArray() method in SubList 545 public <T> T[] toArray(T[] a) { in toArray() method in SubList 641 public Object[] toArray() { in toArray() method in List12 651 public <T> T[] toArray(T[] a) { in toArray() method in List12 708 public Object[] toArray() { in toArray() method in ListN 714 public <T> T[] toArray(T[] a) { in toArray() method in ListN 873 public Object[] toArray() { in toArray() method 885 public <T> T[] toArray(T[] a) { in toArray() method
|
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 | AbstractCollection.java | 139 public Object[] toArray() { in toArray() method in AbstractCollection 180 public <T> T[] toArray(T[] a) { in toArray() method in AbstractCollection
|
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
|
/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
|
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/ |
D | DelayQueue.annotated.java | 79 public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } in toArray() method in DelayQueue 81 public <T> T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } in toArray() method in DelayQueue
|
/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/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/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
|
/libcore/luni/src/test/androidsdk34/src/libcore/android34/java/util/ |
D | ListTest.java | 65 public Object[] toArray() { in toArray() method in ListTest.MyList 70 public <T> T[] toArray(T[] a) { in toArray() method in ListTest.MyList 302 public Object[] toArray() { in toArray() method in ListTest.ClashClass 307 public <T> T[] toArray(T[] a) { in toArray() method in ListTest.ClashClass
|
D | ListWithPrivateMethods.java | 47 public Object[] toArray() { in toArray() method in ListWithPrivateMethods 52 public <T> T[] toArray(T[] a) { in toArray() method in ListWithPrivateMethods
|
D | PackageProtectedList.java | 48 public Object[] toArray() { in toArray() method in PackageProtectedList 53 public <T> T[] toArray(T[] a) { in toArray() method in PackageProtectedList
|
/libcore/ojluni/src/test/java/text/testlib/ |
D | HexDumpReader.java | 104 byte[] toArray() { in toArray() method in HexDumpReader.ByteArrayBuilder
|