Searched refs:RegularImmutableList (Results 1 - 9 of 9) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularImmutableList.java22 * GWT emulated version of {@link RegularImmutableList}.
26 class RegularImmutableList<E> extends ImmutableList<E> { class in inherits:ImmutableList
27 RegularImmutableList(List<E> delegate) { method in class:RegularImmutableList
H A DImmutableAsList.java26 final class ImmutableAsList<E> extends RegularImmutableList<E> {
H A DImmutableList.java65 return new RegularImmutableList<E>(
70 return new RegularImmutableList<E>(
75 return new RegularImmutableList<E>(
80 return new RegularImmutableList<E>(
85 return new RegularImmutableList<E>(
91 return new RegularImmutableList<E>(
97 return new RegularImmutableList<E>(
103 return new RegularImmutableList<E>(
109 return new RegularImmutableList<E>(ImmutableList.<E>nullCheckedList(
115 return new RegularImmutableList<
[all...]
H A DImmutableAsList_CustomFieldSerializer.java36 RegularImmutableList<?> instance) {
/external/guava/guava-gwt/src/com/google/common/collect/
H A DRegularImmutableList_CustomFieldSerializer.java29 * RegularImmutableList}.
36 RegularImmutableList<?> instance) {
39 public static RegularImmutableList<Object> instantiate(
45 * RegularImmutableList before it's serialized. Since RegularImmutableList
47 * a RegularImmutableList back.
49 return (RegularImmutableList<Object>) ImmutableList.copyOf(elements);
53 RegularImmutableList<?> instance) throws SerializationException {
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableList.java33 class RegularImmutableList<E> extends ImmutableList<E> { class in inherits:ImmutableList
38 RegularImmutableList(Object[] array, int offset, int size) { method in class:RegularImmutableList
44 RegularImmutableList(Object[] array) { method in class:RegularImmutableList
121 : new RegularImmutableList<E>(
150 if (object instanceof RegularImmutableList) {
151 RegularImmutableList<?> other = (RegularImmutableList<?>) object;
H A DImmutableAsList.java33 final class ImmutableAsList<E> extends RegularImmutableList<E> {
42 // The collection's contains() is at least as fast as RegularImmutableList's
H A DImmutableCollection.java240 : new RegularImmutableList<E>(elements);
H A DImmutableList.java298 return new RegularImmutableList<E>(elements);

Completed in 176 milliseconds