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

/libcore/ojluni/src/main/java/java/util/
H A DEnumMap.java384 ks = new KeySet();
390 private class KeySet extends AbstractSet<K> { class in class:EnumMap
H A DHashtable.java643 keySet = Collections.synchronizedSet(new KeySet(), this);
647 private class KeySet extends AbstractSet<K> { class in class:Hashtable
H A DIdentityHashMap.java968 ks = new KeySet();
974 private class KeySet extends AbstractSet<K> { class in class:IdentityHashMap
H A DWeakHashMap.java869 ks = new KeySet();
875 private class KeySet extends AbstractSet<K> { class in class:WeakHashMap
H A DHashMap.java907 ks = new KeySet();
913 final class KeySet extends AbstractSet<K> { class in class:HashMap
H A DTreeMap.java789 private transient KeySet<K> navigableKeySet;
825 KeySet<K> nks = navigableKeySet;
826 return (nks != null) ? nks : (navigableKeySet = new KeySet<>(this));
1103 * Unlike Values and EntrySet, the KeySet class is static,
1118 static final class KeySet<E> extends AbstractSet<E> implements NavigableSet<E> { class in class:TreeMap
1120 KeySet(NavigableMap<E,?> map) { m = map; } method in class:TreeMap.KeySet
1162 return new KeySet<>(m.subMap(fromElement, fromInclusive,
1166 return new KeySet<>(m.headMap(toElement, inclusive));
1169 return new KeySet<>(m.tailMap(fromElement, inclusive));
1181 return new KeySet<>(
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java378 private transient KeySet<K,V> keySet;
1830 KeySet<K,V> ks = keySet;
1831 return (ks != null) ? ks : (keySet = new KeySet<>(this));
1835 KeySet<K,V> ks = keySet;
1836 return (ks != null) ? ks : (keySet = new KeySet<>(this));
2359 static final class KeySet<K,V> class in class:ConcurrentSkipListMap
2362 KeySet(ConcurrentNavigableMap<K,V> map) { m = map; } method in class:ConcurrentSkipListMap.KeySet
2411 return new KeySet<>(m.subMap(fromElement, fromInclusive,
2415 return new KeySet<>(m.headMap(toElement, inclusive));
2418 return new KeySet<>(
[all...]

Completed in 26 milliseconds