Home
last modified time | relevance | path

Searched refs:RegularImmutableList (Results 1 – 4 of 4) sorted by relevance

/external/guava/src/com/google/common/collect/
DImmutableList.java90 return new RegularImmutableList<E>(copyIntoArray(e1, e2)); in of()
99 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3)); in of()
108 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4)); in of()
117 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4, e5)); in of()
126 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4, e5, e6)); in of()
136 return new RegularImmutableList<E>( in of()
147 return new RegularImmutableList<E>( in of()
158 return new RegularImmutableList<E>( in of()
169 return new RegularImmutableList<E>( in of()
180 return new RegularImmutableList<E>( in of()
[all …]
DRegularImmutableList.java35 class RegularImmutableList<E> extends ImmutableList<E> { class
40 RegularImmutableList(Object[] array, int offset, int size) { in RegularImmutableList() method in RegularImmutableList
46 RegularImmutableList(Object[] array) { in RegularImmutableList() method in RegularImmutableList
117 : new RegularImmutableList<E>( in subList()
192 if (object instanceof RegularImmutableList) { in equals()
193 RegularImmutableList<?> other = (RegularImmutableList<?>) object; in equals()
DImmutableAsList.java30 final class ImmutableAsList<E> extends RegularImmutableList<E> {
DImmutableSortedAsList.java28 final class ImmutableSortedAsList<E> extends RegularImmutableList<E> {