Searched defs:ImmutableList (Results 1 - 4 of 4) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableList.java35 * GWT emulated version of {@link ImmutableList}.
40 public abstract class ImmutableList<E> extends ForwardingImmutableCollection<E> class in inherits:ForwardingImmutableCollection,List,RandomAccess
45 ImmutableList(List<E> delegate) { method in class:ImmutableList
50 ImmutableList() { method in class:ImmutableList
56 public static <E> ImmutableList<E> of() {
57 return (ImmutableList<E>) EmptyImmutableList.INSTANCE;
60 public static <E> ImmutableList<E> of(E element) {
64 public static <E> ImmutableList<E> of(E e1, E e2) {
66 ImmutableList.<E>nullCheckedList(e1, e2));
69 public static <E> ImmutableList<
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableList.h1 //==--- ImmutableList.h - Immutable (functional) list interface --*- C++ -*-==//
10 // This file defines the ImmutableList class.
55 /// ImmutableList - This class represents an immutable (functional) list.
58 /// This interface matches ImmutableSet and ImmutableMap. ImmutableList
64 class ImmutableList { class in namespace:llvm
76 ImmutableList(const ImmutableListImpl<T>* x = 0) : X(x) {} function in class:llvm::ImmutableList
86 iterator(ImmutableList l) : L(l.getInternalPointer()) {}
92 ImmutableList getList() const { return L; }
119 bool isEqual(const ImmutableList& L) const { return X == L.X; }
121 bool operator==(const ImmutableList
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableList.java42 * ImmutableList} contains its own private data and will <i>never</i> change.
43 * {@code ImmutableList} is convenient for {@code public static final} lists
58 public abstract class ImmutableList<E> extends ImmutableCollection<E> class in inherits:ImmutableCollection,List,RandomAccess
67 public static <E> ImmutableList<E> of() {
68 return (ImmutableList<E>) EmptyImmutableList.INSTANCE;
79 public static <E> ImmutableList<E> of(E element) {
88 public static <E> ImmutableList<E> of(E e1, E e2) {
97 public static <E> ImmutableList<E> of(E e1, E e2, E e3) {
106 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) {
115 public static <E> ImmutableList<
310 ImmutableList() {} method in class:ImmutableList
[all...]
H A DImmutableSortedMap.java77 ImmutableList.<Entry<Comparable, Object>>of(), NATURAL_ORDER);
96 ImmutableList.<Entry<K, V>>of(), comparator);
106 ImmutableList.of(entryOf(k1, v1)), Ordering.natural());
265 return new ImmutableSortedMap<K, V>(ImmutableList.copyOf(list), comparator);
409 ImmutableList.copyOf(entries), comparator);
413 final transient ImmutableList<Entry<K, V>> entries;
417 ImmutableList<Entry<K, V>> entries, Comparator<? super K> comparator) {
715 private ImmutableList<K> keyList() {
416 ImmutableSortedMap( ImmutableList<Entry<K, V>> entries, Comparator<? super K> comparator) argument

Completed in 98 milliseconds