Searched refs:KeySet (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java813 private transient KeySet<K> navigableKeySet = null;
849 KeySet<K> nks = navigableKeySet;
850 return (nks != null) ? nks : (navigableKeySet = new KeySet<>(this));
1123 * Unlike Values and EntrySet, the KeySet class is static,
1138 static final class KeySet<E> extends AbstractSet<E> implements NavigableSet<E> { class in class:TreeMap
1140 KeySet(NavigableMap<E,?> map) { m = map; } method in class:TreeMap.KeySet
1182 return new KeySet<>(m.subMap(fromElement, fromInclusive,
1186 return new KeySet<>(m.headMap(toElement, inclusive));
1189 return new KeySet<>(m.tailMap(fromElement, inclusive));
1201 return new KeySet<>(
[all...]
H A DEnumMap.java386 return keySet = new KeySet();
389 private class KeySet extends AbstractSet<K> { class in class:EnumMap
H A DHashtable.java633 keySet = Collections.synchronizedSet(new KeySet(), this);
637 private class KeySet extends AbstractSet<K> { class in class:Hashtable
H A DIdentityHashMap.java976 return keySet = new KeySet();
979 private class KeySet extends AbstractSet<K> { class in class:IdentityHashMap
H A DWeakHashMap.java851 return (ks != null ? ks : (keySet = new KeySet()));
854 private class KeySet extends AbstractSet<K> { class in class:WeakHashMap
H A DHashMap.java1183 return (ks != null ? ks : (keySet = new KeySet()));
1186 private final class KeySet extends AbstractSet<K> { class in class:HashMap
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java349 private transient KeySet<K,V> keySet;
1801 KeySet<K,V> ks = keySet;
1802 return (ks != null) ? ks : (keySet = new KeySet<>(this));
1806 KeySet<K,V> ks = keySet;
1807 return (ks != null) ? ks : (keySet = new KeySet<>(this));
2330 static final class KeySet<K,V> class in class:ConcurrentSkipListMap
2333 KeySet(ConcurrentNavigableMap<K,V> map) { m = map; } method in class:ConcurrentSkipListMap.KeySet
2382 return new KeySet<>(m.subMap(fromElement, fromInclusive,
2386 return new KeySet<>(m.headMap(toElement, inclusive));
2389 return new KeySet<>(
[all...]

Completed in 1599 milliseconds