Home
last modified time | relevance | path

Searched refs:listCopy (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DList.java1212 return ImmutableCollections.listCopy(coll); in copyOf()
DImmutableCollections.java175 static <E> List<E> listCopy(Collection<? extends E> coll) { in listCopy() method in ImmutableCollections
/libcore/ojluni/src/test/java/util/Collection/
DMOAT.java259 List<Integer> listCopy = List.copyOf(Arrays.asList(1, 2, 3)); in realMain() local
260 testCollection(listCopy); in realMain()
261 testImmutableList(listCopy); in realMain()
262 testListMutatorsAlwaysThrow(listCopy); in realMain()