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

12345

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBitSet.as219 public function toArray():Array { function
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSetExtensions.cs83 public static T[] toArray<T>( this HashSet<T> set ) method in class:Antlr.Runtime.JavaExtensions.SetExtensions
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java58 @Override public Object[] toArray() { method in class:ForwardingImmutableCollection
59 return delegate.toArray();
62 @Override public <T> T[] toArray(T[] other) { method in class:ForwardingImmutableCollection
63 return delegate.toArray(other);
H A DImmutableCollection.java45 public Object[] toArray() { method in class:ImmutableCollection
47 return toArray(newArray);
50 public <T> T[] toArray(T[] other) { method in class:ImmutableCollection
58 // Writes will produce ArrayStoreException when the toArray() doc requires.
131 E[] castedArray = (E[]) toArray();
H A DRegularContiguousSet.java119 @Override public Object[] toArray() { method in class:RegularContiguousSet
124 @Override public <T> T[] toArray(T[] other) { method in class:RegularContiguousSet
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DOrderedHashSet.java95 public Object[] toArray() { method in class:OrderedHashSet
96 return elements.toArray();
H A DIntervalSet.java651 public int[] toArray() { method in class:IntervalSet
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableSet.java77 @Override public Object[] toArray() { method in class:SingletonImmutableSet
81 @Override public <T> T[] toArray(T[] array) { method in class:SingletonImmutableSet
87 // Writes will produce ArrayStoreException when the toArray() doc requires.
H A DEmptyImmutableSet.java60 @Override public Object[] toArray() { method in class:EmptyImmutableSet
64 @Override public <T> T[] toArray(T[] a) { method in class:EmptyImmutableSet
H A DImmutableEnumSet.java73 @Override public Object[] toArray() { method in class:ImmutableEnumSet
74 return delegate.toArray();
77 @Override public <T> T[] toArray(T[] array) { method in class:ImmutableEnumSet
78 return delegate.toArray(array);
H A DRegularImmutableList.java71 @Override public Object[] toArray() { method in class:RegularImmutableList
77 @Override public <T> T[] toArray(T[] other) { method in class:RegularImmutableList
H A DSingletonImmutableList.java154 @Override public Object[] toArray() { method in class:SingletonImmutableList
158 @Override public <T> T[] toArray(T[] array) { method in class:SingletonImmutableList
164 // Writes will produce ArrayStoreException when the toArray() doc requires.
H A DTransformedImmutableList.java117 @Override public Object[] toArray() { method in class:TransformedImmutableList
121 @Override public <T> T[] toArray(T[] array) { method in class:TransformedImmutableList
H A DConcurrentHashMultiset.java182 * Note: the superclass toArray() methods assume that size() gives a correct
186 @Override public Object[] toArray() { method in class:ConcurrentHashMultiset
187 return snapshot().toArray();
190 @Override public <T> T[] toArray(T[] array) { method in class:ConcurrentHashMultiset
191 return snapshot().toArray(array);
532 * Note: the superclass toArray() methods assume that size() gives a correct
536 @Override public Object[] toArray() { method in class:ConcurrentHashMultiset.EntrySet
537 return snapshot().toArray();
540 @Override public <T> T[] toArray(T[] array) { method in class:ConcurrentHashMultiset.EntrySet
541 return snapshot().toArray(arra
[all...]
H A DEmptyImmutableList.java92 @Override public Object[] toArray() { method in class:EmptyImmutableList
96 @Override public <T> T[] toArray(T[] a) { method in class:EmptyImmutableList
H A DEmptyImmutableSortedSet.java63 @Override public Object[] toArray() { method in class:EmptyImmutableSortedSet
67 @Override public <T> T[] toArray(T[] a) { method in class:EmptyImmutableSortedSet
H A DForwardingCollection.java114 public Object[] toArray() { method in class:ForwardingCollection
115 return delegate().toArray();
119 public <T> T[] toArray(T[] array) { method in class:ForwardingCollection
120 return delegate().toArray(array);
244 * A sensible definition of {@link #toArray()} in terms of {@link
245 * #toArray(Object[])}. If you override {@link #toArray(Object[])}, you may
246 * wish to override {@link #toArray} to forward to this implementation.
252 return toArray(newArray);
256 * A sensible definition of {@link #toArray(Objec
[all...]
H A DRegularImmutableSortedSet.java146 @Override public Object[] toArray() { method in class:RegularImmutableSortedSet
147 return elements.toArray();
150 @Override public <T> T[] toArray(T[] array) { method in class:RegularImmutableSortedSet
151 return elements.toArray(array);
H A DSortedMultisets.java184 @Override public Object[] toArray() { method in class:SortedMultisets.DescendingMultiset
188 @Override public <T> T[] toArray(T[] array) { method in class:SortedMultisets.DescendingMultiset
/external/smack/src/org/xbill/DNS/
H A DTypeBitmap.java79 toArray() { method in class:TypeBitmap
H A DARecord.java36 toArray(int addr) { method in class:ARecord
71 return (Address.toDottedQuad(toArray(addr)));
79 toArray(addr));
H A DAddress.java166 toArray(String s, int family) { method in class:Address
182 toArray(String s) { method in class:Address
183 return toArray(s, IPv4);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Sequence.java152 public ASN1Encodable[] toArray() method in class:ASN1Sequence
H A DASN1Set.java119 return new BERSet(s.toArray());
123 return new DLSet(s.toArray());
208 public ASN1Encodable[] toArray() method in class:ASN1Set
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalCollection.java94 @Override public Object[] toArray() { method in class:MinimalCollection

Completed in 563 milliseconds

12345