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

/libcore/luni/src/main/java/java/util/
H A DHashtable.java714 HashtableEntry<K, V> lastEntryReturned; field in class:Hashtable.HashIterator
743 return lastEntryReturned = entryToReturn;
757 return lastEntryReturned = entryToReturn;
761 if (lastEntryReturned == null)
765 Hashtable.this.remove(lastEntryReturned.key);
766 lastEntryReturned = null;
H A DHashMap.java772 HashMapEntry<K, V> lastEntryReturned; field in class:HashMap.HashIterator
803 return lastEntryReturned = entryToReturn;
807 if (lastEntryReturned == null)
811 HashMap.this.remove(lastEntryReturned.key);
812 lastEntryReturned = null;

Completed in 252 milliseconds