Searched refs:ListN (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | List.java | 861 return new ImmutableCollections.ListN<>(e1, e2, e3); in of() 880 return new ImmutableCollections.ListN<>(e1, e2, e3, e4); in of() 900 return new ImmutableCollections.ListN<>(e1, e2, e3, e4, e5); in of() 921 return new ImmutableCollections.ListN<>(e1, e2, e3, e4, e5, in of() 944 return new ImmutableCollections.ListN<>(e1, e2, e3, e4, e5, in of() 968 return new ImmutableCollections.ListN<>(e1, e2, e3, e4, e5, in of() 993 return new ImmutableCollections.ListN<>(e1, e2, e3, e4, e5, in of() 1019 return new ImmutableCollections.ListN<>(e1, e2, e3, e4, e5, in of() 1059 return new ImmutableCollections.ListN<>(elements); in of()
|
D | ImmutableCollections.java | 97 return (List<E>) ListN.EMPTY_LIST; in emptyList() 409 static final class ListN<E> extends AbstractImmutableList<E> class in ImmutableCollections 412 static final List<?> EMPTY_LIST = new ListN<>(); 418 ListN(E... input) { in ListN() method in ImmutableCollections.ListN
|