Searched refs:listCopy (Results 1 – 3 of 3) sorted by relevance
1212 return ImmutableCollections.listCopy(coll); in copyOf()
175 static <E> List<E> listCopy(Collection<? extends E> coll) { in listCopy() method in ImmutableCollections
259 List<Integer> listCopy = List.copyOf(Arrays.asList(1, 2, 3)); in realMain() local260 testCollection(listCopy); in realMain()261 testImmutableList(listCopy); in realMain()262 testListMutatorsAlwaysThrow(listCopy); in realMain()