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

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentMap.java17 * {@code putIfAbsent}, {@code remove}, and {@code replace} methods.
113 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
142 V replace(K key, V value); method in interface:ConcurrentMap
H A DConcurrentHashMap.java150 * delete, and replace) require locks. We do not want to waste
226 * cloning when a table doubles. The nodes they replace will be
912 * These mappings replace any mappings that this map had for any of the
937 * Implementation for the four public remove/replace methods:
1385 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentHashMap
1398 public V replace(K key, V value) { method in class:ConcurrentHashMap
H A DConcurrentSkipListMap.java39 * {@code replace}, depending on exactly which effect you need.)
139 * concurrent replace vs delete operations -- an attempted replace
854 break; // restart if lost race to replace value
1886 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentSkipListMap
1913 public V replace(K key, V value) { method in class:ConcurrentSkipListMap
2779 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentSkipListMap.SubMap
2781 return m.replace(key, oldValue, newValue);
2784 public V replace(K key, V value) { method in class:ConcurrentSkipListMap.SubMap
2786 return m.replace(ke
[all...]
/libcore/luni/src/main/java/java/lang/
H A DStringBuilder.java636 public StringBuilder replace(int start, int end, String string) { method in class:StringBuilder
H A DStringBuffer.java674 * the string that will replace the contents in the range.
681 public synchronized StringBuffer replace(int start, int end, String string) { method in class:StringBuffer
/libcore/libart/src/main/java/java/lang/
H A DString.java181 * is to replace malformed input and unmappable code points with the charset's default
542 * is to replace malformed input and unmappable code points with the charset's default
942 public String replace(char oldChar, char newChar) { method in class:String
967 public String replace(CharSequence target, CharSequence replacement) { method in class:String
978 // If there's nothing to replace, return the original string untouched.
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 1407 milliseconds