Searched defs:toArray (Results 1 - 25 of 38) sorted by relevance

12

/external/guava/src/com/google/common/collect/
H A DSingletonImmutableSet.java68 @Override public Object[] toArray() { method in class:SingletonImmutableSet
73 @Override public <T> T[] toArray(T[] array) { method in class:SingletonImmutableSet
79 // Writes will produce ArrayStoreException when the toArray() doc requires.
H A DEmptyImmutableSet.java55 @Override public Object[] toArray() { method in class:EmptyImmutableSet
59 @Override public <T> T[] toArray(T[] a) { method in class:EmptyImmutableSet
H A DForwardingCollection.java60 public Object[] toArray() { method in class:ForwardingCollection
61 return delegate().toArray();
64 public <T> T[] toArray(T[] array) { method in class:ForwardingCollection
65 return delegate().toArray(array);
H A DImmutableEnumSet.java77 @Override public Object[] toArray() { method in class:ImmutableEnumSet
78 return delegate.toArray();
81 @Override public <T> T[] toArray(T[] array) { method in class:ImmutableEnumSet
82 return delegate.toArray(array);
H A DRegularImmutableList.java68 @Override public Object[] toArray() { method in class:RegularImmutableList
74 @Override public <T> T[] toArray(T[] other) { method in class:RegularImmutableList
H A DSingletonImmutableList.java104 @Override public Object[] toArray() { method in class:SingletonImmutableList
108 @Override public <T> T[] toArray(T[] array) { method in class:SingletonImmutableList
114 // Writes will produce ArrayStoreException when the toArray() doc requires.
H A DConcurrentHashMultiset.java142 * Note: the superclass toArray() methods assume that size() gives a correct
146 @Override public Object[] toArray() { method in class:ConcurrentHashMultiset
147 return snapshot().toArray();
150 @Override public <T> T[] toArray(T[] array) { method in class:ConcurrentHashMultiset
151 return snapshot().toArray(array);
414 * Note: the superclass toArray() methods assume that size() gives a correct
418 @Override public Object[] toArray() { method in class:ConcurrentHashMultiset.EntrySet
419 return snapshot().toArray();
422 @Override public <T> T[] toArray(T[] array) { method in class:ConcurrentHashMultiset.EntrySet
423 return snapshot().toArray(arra
[all...]
H A DConstrainedMap.java115 @Override public Object[] toArray() { method in class:ConstrainedMap.ConstrainedEntries
118 @Override public <T> T[] toArray(T[] array) { method in class:ConstrainedMap.ConstrainedEntries
H A DEmptyImmutableList.java60 @Override public Object[] toArray() { method in class:EmptyImmutableList
64 @Override public <T> T[] toArray(T[] a) { method in class:EmptyImmutableList
H A DEmptyImmutableSortedSet.java58 @Override public Object[] toArray() { method in class:EmptyImmutableSortedSet
62 @Override public <T> T[] toArray(T[] a) { method in class:EmptyImmutableSortedSet
H A DImmutableCollection.java55 public Object[] toArray() { method in class:ImmutableCollection
57 return toArray(newArray);
60 public <T> T[] toArray(T[] other) { method in class:ImmutableCollection
68 // Writes will produce ArrayStoreException when the toArray() doc requires.
183 return new ImmutableAsList<E>(toArray(), this);
207 @Override public Object[] toArray() { method in class:ImmutableCollection.EmptyImmutableCollection
211 @Override public <T> T[] toArray(T[] array) { method in class:ImmutableCollection.EmptyImmutableCollection
258 return new SerializedForm(toArray());
H A DRegularImmutableSortedSet.java149 @Override public Object[] toArray() { method in class:RegularImmutableSortedSet
156 @Override public <T> T[] toArray(T[] array) { method in class:RegularImmutableSortedSet
H A DAbstractBiMap.java249 @Override public Object[] toArray() { method in class:AbstractBiMap.ValueSet
253 @Override public <T> T[] toArray(T[] array) { method in class:AbstractBiMap.ValueSet
336 @Override public Object[] toArray() { method in class:AbstractBiMap.EntrySet
339 @Override public <T> T[] toArray(T[] array) { method in class:AbstractBiMap.EntrySet
H A DCollections2.java227 public Object[] toArray() { method in class:Collections2.FilteredCollection
229 return Lists.newArrayList(iterator()).toArray();
232 public <T> T[] toArray(T[] array) { method in class:Collections2.FilteredCollection
233 return Lists.newArrayList(iterator()).toArray(array);
H A DImmutableSet.java288 elements.toArray(), hashCode, table, mask);
317 @Override public Object[] toArray() { method in class:ImmutableSet.ArrayImmutableSet
323 @Override public <T> T[] toArray(T[] array) { method in class:ImmutableSet.ArrayImmutableSet
388 @Override public Object[] toArray() { method in class:ImmutableSet.TransformedImmutableSet
389 return toArray(new Object[size()]);
392 @Override public <T> T[] toArray(T[] array) { method in class:ImmutableSet.TransformedImmutableSet
400 // Writes will produce ArrayStoreException when the toArray() doc requires.
436 return new SerializedForm(toArray());
H A DIterables.java236 public static <T> T[] toArray(Iterable<? extends T> iterable, Class<T> type) { method in class:Iterables
242 return collection.toArray(array);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DASN1Set.java134 public ASN1Encodable[] toArray() method in class:ASN1Set
/external/collada/src/dae/
H A DdaeMetaAttribute.cpp25 daeArray& toArray = (daeArray&)*get(to); local
26 _type->copyArray(fromArray, toArray);
/external/antlr/src/org/antlr/runtime/
H A DBitSet.java277 public int[] toArray() { method in class:BitSet
/external/guava/src/com/google/common/primitives/
H A DBooleans.java296 * collection.toArray()}. Calling this method is as thread-safe as calling
308 public static boolean[] toArray(Collection<Boolean> collection) { method in class:Booleans
313 Object[] boxedArray = collection.toArray();
H A DBytes.java214 * collection.toArray()}. Calling this method is as thread-safe as calling
223 public static byte[] toArray(Collection<Byte> collection) { method in class:Bytes
228 Object[] boxedArray = collection.toArray();
H A DChars.java400 * collection.toArray()}. Calling this method is as thread-safe as calling
409 public static char[] toArray(Collection<Character> collection) { method in class:Chars
414 Object[] boxedArray = collection.toArray();
H A DDoubles.java333 * collection.toArray()}. Calling this method is as thread-safe as calling
342 public static double[] toArray(Collection<Double> collection) { method in class:Doubles
347 Object[] boxedArray = collection.toArray();
H A DFloats.java330 * collection.toArray()}. Calling this method is as thread-safe as calling
339 public static float[] toArray(Collection<Float> collection) { method in class:Floats
344 Object[] boxedArray = collection.toArray();
H A DInts.java407 * collection.toArray()}. Calling this method is as thread-safe as calling
416 public static int[] toArray(Collection<Integer> collection) { method in class:Ints
421 Object[] boxedArray = collection.toArray();

Completed in 1183 milliseconds

12