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

/libcore/luni/src/main/java/java/util/
H A DEnumeration.java41 * @see #nextElement
53 public E nextElement(); method in interface:Enumeration
H A DStringTokenizer.java170 public Object nextElement() { method in class:StringTokenizer
H A DHashtable.java789 public K nextElement() { return nextEntryNotFailFast().key; } method in class:Hashtable.KeyEnumeration
795 public V nextElement() { return nextEntryNotFailFast().value; } method in class:Hashtable.ValueEnumeration
/libcore/luni/src/test/java/tests/java/security/
H A DSecureRandomTest.java63 if (sr.nextElement(1) != 1 || sr.nextElement(2) != 3 || sr.nextElement(3) != 7) {
291 public int nextElement(int numBits) { method in class:SecureRandomTest.MySecureRandom
/libcore/dalvik/src/main/java/dalvik/system/
H A DDexFile.java242 public String nextElement() { method in class:DexFile.DFEnum
/libcore/luni/src/main/java/java/lang/
H A DClassLoader.java731 public URL nextElement() { method in class:TwoEnumerationsInOne
733 return first.nextElement();
735 return second.nextElement();
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java1270 public final K nextElement() { return super.nextEntry().key; } method in class:ConcurrentHashMap.KeyIterator
1278 public final V nextElement() { return super.nextEntry().value; } method in class:ConcurrentHashMap.ValueIterator

Completed in 181 milliseconds