HomeSort by relevance Sort by last modified time
    Searched refs:lastEntryReturned (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/util/
Hashtable.java 709 HashtableEntry<K, V> lastEntryReturned;
738 return lastEntryReturned = entryToReturn;
752 return lastEntryReturned = entryToReturn;
756 if (lastEntryReturned == null)
760 Hashtable.this.remove(lastEntryReturned.key);
761 lastEntryReturned = null;
    [all...]
HashMap.java 786 HashMapEntry<K, V> lastEntryReturned;
817 return lastEntryReturned = entryToReturn;
821 if (lastEntryReturned == null)
825 HashMap.this.remove(lastEntryReturned.key);
826 lastEntryReturned = null;
    [all...]

Completed in 685 milliseconds