Searched defs:toArray (Results 76 - 84 of 84) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentLinkedDeque.java69 * {@code equals}, and {@code toArray} are <em>not</em> guaranteed
818 * Used by toArray.
1226 public Object[] toArray() { method in class:ConcurrentLinkedDeque
1227 return toArrayList().toArray();
1243 * <p>Like the {@link #toArray()} method, this method acts as
1254 * String[] y = x.toArray(new String[0]);</pre>
1256 * Note that {@code toArray(new Object[0])} is identical in function to
1257 * {@code toArray()}.
1268 public <T> T[] toArray(T[] a) { method in class:ConcurrentLinkedDeque
1269 return toArrayList().toArray(
[all...]
H A DScheduledThreadPoolExecutor.java364 for (Object e : q.toArray())
371 for (Object e : q.toArray()) {
1216 public Object[] toArray() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
1227 public <T> T[] toArray(T[] a) { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
H A DSynchronousQueue.java1076 public Object[] toArray() { method in class:SynchronousQueue
1088 public <T> T[] toArray(T[] a) { method in class:SynchronousQueue
H A DConcurrentSkipListMap.java72 * <tt>toArray</tt>, <tt>containsValue</tt>, and <tt>clear</tt> are
2349 public Object[] toArray() { return toList(this).toArray(); } method in class:ConcurrentSkipListMap.KeySet
2350 public <T> T[] toArray(T[] a) { return toList(this).toArray(a); } method in class:ConcurrentSkipListMap.KeySet
2404 public Object[] toArray() { return toList(this).toArray(); } method in class:ConcurrentSkipListMap.Values
2405 public <T> T[] toArray(T[] a) { return toList(this).toArray(a); } method in class:ConcurrentSkipListMap.Values
2458 public Object[] toArray() { retur method in class:ConcurrentSkipListMap.EntrySet
2459 public <T> T[] toArray(T[] a) { return toList(this).toArray(a); } method in class:ConcurrentSkipListMap.EntrySet
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java79 public static char[] toArray(CharBuffer buffer) { method in class:JavacFileManager
624 return getClassLoader(lb.toArray(new URL[lb.size()]));
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstantPool.java757 cpMapList.toArray(cpMap);
867 public Object[] toArray(Object[] a) { method in class:ConstantPool.Index
869 if (a.length < sz) return super.toArray(a);
874 public Object[] toArray() { method in class:ConstantPool.Index
875 return toArray(new Entry[size()]);
H A DBandStructure.java1212 Band[] toArray() { method in class:BandStructure.MultiBand
1813 stackmap_bands.toArray(),
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java154 Object[] a = list.toArray();
216 Object[] a = list.toArray();
502 Object arr[] = list.toArray();
1058 public Object[] toArray() {return c.toArray();} method in class:Collections.UnmodifiableCollection
1059 public <T> T[] toArray(T[] a) {return c.toArray(a);} method in class:Collections.UnmodifiableCollection
1411 public Object[] toArray() { method in class:Collections.UnmodifiableMap.UnmodifiableEntrySet
1412 Object[] a = c.toArray();
1418 public <T> T[] toArray( method in class:Collections.UnmodifiableMap.UnmodifiableEntrySet
1624 public Object[] toArray() { method in class:Collections.SynchronizedCollection
1627 public <T> T[] toArray(T[] a) { method in class:Collections.SynchronizedCollection
2294 public Object[] toArray() { return c.toArray(); } method in class:Collections.CheckedCollection
2295 public <T> T[] toArray(T[] a) { return c.toArray(a); } method in class:Collections.CheckedCollection
2754 public Object[] toArray() { method in class:Collections.CheckedMap.CheckedEntrySet
2772 public <T> T[] toArray(T[] a) { method in class:Collections.CheckedMap.CheckedEntrySet
3140 public Object[] toArray() { return new Object[0]; } method in class:Collections.EmptySet
3142 public <T> T[] toArray(T[] a) { method in class:Collections.EmptySet
3203 public Object[] toArray() { return new Object[0]; } method in class:Collections.EmptyList
3205 public <T> T[] toArray(T[] a) { method in class:Collections.EmptyList
3509 public Object[] toArray() { method in class:Collections.CopiesList
3516 public <T> T[] toArray(T[] a) { method in class:Collections.CopiesList
3905 public Object[] toArray() { return s.toArray(); } method in class:Collections.SetFromMap
3906 public <T> T[] toArray(T[] a) { return s.toArray(a); } method in class:Collections.SetFromMap
3966 public Object[] toArray() { return q.toArray(); } method in class:Collections.AsLIFOQueue
3967 public <T> T[] toArray(T[] a) { return q.toArray(a); } method in class:Collections.AsLIFOQueue
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java132 * Object[] toArray()
1210 public Object[] toArray() { method in class:XMLKit.Element
2216 public Object[] toArray() { method in class:XMLKit.Element.LView
2217 return Element.this.toArray();
2265 // Others: toArray(Object[]), containsAll, removeAll, retainAll

Completed in 2916 milliseconds

1234