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

/libcore/luni/src/main/java/java/util/
H A DTreeMap.java865 abstract class MapIterator<T> implements Iterator<T> { class in class:TreeMap
870 MapIterator(Node<K, V> next) { method in class:TreeMap.MapIterator
922 return new MapIterator<Entry<K, V>>(root == null ? null : root.first()) {
957 return new MapIterator<K>(root == null ? null : root.first()) {
965 return new MapIterator<K>(root == null ? null : root.last()) {
1479 abstract class BoundedIterator<T> extends MapIterator<T> {

Completed in 26 milliseconds