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

/libcore/ojluni/src/main/java/java/util/
H A DCollections.java862 * More formally, replaces with <tt>newVal</tt> each element <tt>e</tt>
870 * @param newVal the new value with which <tt>oldVal</tt> is to be
879 public static <T> boolean replaceAll(List<T> list, T oldVal, T newVal) { argument
886 list.set(i, newVal);
893 list.set(i, newVal);
903 itr.set(newVal);
910 itr.set(newVal);

Completed in 49 milliseconds