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

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentMap.java16 * {@code putIfAbsent}, {@code remove}, and {@code replace} methods.
112 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
141 V replace(K key, V value); method in interface:ConcurrentMap
H A DConcurrentHashMap.java392 * doubles. The nodes they replace will be garbage
486 * acquire lock for a remove or replace operation. Upon
554 final boolean replace(K key, int hash, V oldValue, V newValue) { method in class:ConcurrentHashMap.Segment
578 final V replace(K key, int hash, V value) { method in class:ConcurrentHashMap.Segment
1048 * These mappings replace any mappings that this map had for any of the
1090 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentHashMap
1095 return s != null && s.replace(key, hash, oldValue, newValue);
1105 public V replace(K key, V value) { method in class:ConcurrentHashMap
1110 return s == null ? null : s.replace(key, hash, value);
H A DConcurrentSkipListMap.java38 * {@code replace}, depending on exactly which effect you need.)
138 * concurrent replace vs delete operations -- an attempted replace
845 break; // restart if lost race to replace value
1877 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentSkipListMap
1904 public V replace(K key, V value) { method in class:ConcurrentSkipListMap
2770 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentSkipListMap.SubMap
2772 return m.replace(key, oldValue, newValue);
2775 public V replace(K key, V value) { method in class:ConcurrentSkipListMap.SubMap
2777 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.java223 * is to replace malformed input and unmappable characters with the charset's default
813 * is to replace malformed input and unmappable characters with the charset's default
1271 * the character to replace.
1276 public String replace(char oldChar, char newChar) { method in class:String
1308 * the sequence to replace.
1315 public String replace(CharSequence target, CharSequence replacement) { method in class:String
1326 // If there's nothing to replace, return the original string untouched.
/libcore/libdvm/src/main/java/java/lang/
H A DString.java235 * is to replace malformed input and unmappable characters with the charset's default
848 * is to replace malformed input and unmappable characters with the charset's default
1306 * the character to replace.
1311 public String replace(char oldChar, char newChar) { method in class:String
1343 * the sequence to replace.
1350 public String replace(CharSequence target, CharSequence replacement) { method in class:String
1361 // 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 392 milliseconds