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

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java623 private transient KeySetView<K,V> keySet;
1041 KeySetView<K,V> ks;
1042 return (ks = keySet) != null ? ks : (keySet = new KeySetView<K,V>(this, null));
1450 public static <K> KeySetView<K,Boolean> newKeySet() {
1451 return new KeySetView<K,Boolean>
1468 public static <K> KeySetView<K,Boolean> newKeySet(int initialCapacity) {
1469 return new KeySetView<K,Boolean>
1489 return new KeySetView<K,V>(this, mappedValue);
2807 public static class KeySetView<K,V> extends CollectionView<K,V,K> class in class:ConcurrentHashMap
2811 KeySetView(ConcurrentHashMa method in class:ConcurrentHashMap.KeySetView
[all...]

Completed in 37 milliseconds