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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentMap.java287 default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in interface:ConcurrentMap
H A DCopyOnWriteArrayList.java868 public void replaceAll(UnaryOperator<E> operator) { method in class:CopyOnWriteArrayList
1324 public void replaceAll(UnaryOperator<E> operator) { method in class:CopyOnWriteArrayList.COWSubList
H A DConcurrentSkipListMap.java3239 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:ConcurrentSkipListMap
H A DConcurrentHashMap.java1618 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:ConcurrentHashMap
/libcore/ojluni/src/main/java/java/util/
H A DList.java409 default void replaceAll(UnaryOperator<E> operator) { method in interface:List
H A DMap.java673 default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in interface:Map
H A DArrays.java3813 public void replaceAll(UnaryOperator<E> operator) { method in class:Arrays.ArrayList
H A DLinkedHashMap.java726 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:LinkedHashMap
H A DArrayList.java1453 public void replaceAll(UnaryOperator<E> operator) { method in class:ArrayList
H A DHashtable.java892 public synchronized void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:Hashtable
H A DIdentityHashMap.java1362 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:IdentityHashMap
H A DVector.java1312 public synchronized void replaceAll(UnaryOperator<E> operator) { method in class:Vector
H A DWeakHashMap.java1038 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:WeakHashMap
H A DHashMap.java1300 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:HashMap
H A DTreeMap.java1041 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:TreeMap
H A DCollections.java879 public static <T> boolean replaceAll(List<T> list, T oldVal, T newVal) { method in class:Collections
1368 public void replaceAll(UnaryOperator<E> operator) { method in class:Collections.UnmodifiableList
1551 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:Collections.UnmodifiableMap
2500 public void replaceAll(UnaryOperator<E> operator) { method in class:Collections.SynchronizedList
2501 synchronized (mutex) {list.replaceAll(operator);}
2694 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:Collections.SynchronizedMap
2695 synchronized (mutex) {m.replaceAll(function);}
3533 public void replaceAll(UnaryOperator<E> operator) { method in class:Collections.CheckedList
3535 list.replaceAll(e -> typeCheck(operator.apply(e)));
3705 public void replaceAll(BiFunctio method in class:Collections.CheckedMap
4515 public void replaceAll(UnaryOperator<E> operator) { method in class:Collections.EmptyList
4648 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:Collections.EmptyMap
4875 public void replaceAll(UnaryOperator<E> operator) { method in class:Collections.SingletonList
4960 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { method in class:Collections.SingletonMap
[all...]
/libcore/ojluni/src/main/java/java/util/regex/
H A DMatcher.java70 * #replaceAll replaceAll} method can be used to create a string in which every
746 public String replaceAll(String replacement) { method in class:Matcher
/libcore/ojluni/src/main/java/java/lang/
H A DString.java2180 * <i>str</i>{@code .replaceAll(}<i>regex</i>{@code ,} <i>repl</i>{@code )}
2188 * java.util.regex.Matcher#replaceAll replaceAll}(<i>repl</i>)
2196 * {@link java.util.regex.Matcher#replaceAll Matcher.replaceAll}.
2215 public String replaceAll(String regex, String replacement) { method in class:String
2216 return Pattern.compile(regex).matcher(this).replaceAll(replacement);
/libcore/ojluni/src/main/java/java/security/
H A DProvider.java481 public synchronized void replaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function) { method in class:Provider
791 legacyStrings.replaceAll((BiFunction<? super String, ? super String, ? extends String>) function);
793 super.replaceAll(function);

Completed in 1589 milliseconds