Searched refs:RegularImmutableList (Results 1 – 4 of 4) sorted by relevance
/external/guava/src/com/google/common/collect/ |
D | ImmutableList.java | 90 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 …]
|
D | RegularImmutableList.java | 35 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()
|
D | ImmutableAsList.java | 30 final class ImmutableAsList<E> extends RegularImmutableList<E> {
|
D | ImmutableSortedAsList.java | 28 final class ImmutableSortedAsList<E> extends RegularImmutableList<E> {
|