Searched defs:replace (Results 1 – 6 of 6) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentMap.java | 113 boolean replace(K key, V oldValue, V newValue); in replace() method 142 V replace(K key, V value); in replace() method
|
D | ConcurrentHashMap.java | 554 final boolean replace(K key, int hash, V oldValue, V newValue) { in replace() method in ConcurrentHashMap.Segment 578 final V replace(K key, int hash, V value) { in replace() method in ConcurrentHashMap.Segment 1090 public boolean replace(K key, V oldValue, V newValue) { in replace() method in ConcurrentHashMap 1105 public V replace(K key, V value) { in replace() method in ConcurrentHashMap
|
D | ConcurrentSkipListMap.java | 1878 public boolean replace(K key, V oldValue, V newValue) { in replace() method in ConcurrentSkipListMap 1905 public V replace(K key, V value) { in replace() method in ConcurrentSkipListMap 2771 public boolean replace(K key, V oldValue, V newValue) { in replace() method in ConcurrentSkipListMap.SubMap 2776 public V replace(K key, V value) { in replace() method in ConcurrentSkipListMap.SubMap
|
/libcore/luni/src/main/java/java/lang/ |
D | StringBuilder.java | 636 public StringBuilder replace(int start, int end, String string) { in replace() method in StringBuilder
|
D | StringBuffer.java | 681 public synchronized StringBuffer replace(int start, int end, String string) { in replace() method in StringBuffer
|
D | String.java | 1304 public String replace(char oldChar, char newChar) { in replace() method in String 1343 public String replace(CharSequence target, CharSequence replacement) { in replace() method in String
|