Searched defs:iterator (Results 51 - 58 of 58) sorted by relevance

123

/libcore/luni/src/main/java/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java343 // Traverse snapshot to avoid iterator exceptions
1215 public Iterator<Runnable> iterator() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
1220 * Snapshot iterator that works off copy of underlying q array.
H A DSynchronousQueue.java45 * <p>This class and its iterator implement all of the
1031 * Returns an empty iterator in which {@code hasNext} always returns
1034 * @return an empty iterator
1037 public Iterator<E> iterator() { method in class:SynchronousQueue
H A DConcurrentHashMap.java58 * iterator/enumeration. They do <em>not</em> throw {@link
1031 * <p>The view's {@code iterator} is a "weakly consistent" iterator
1034 * construction of the iterator, and may (but is not guaranteed to)
1055 * <p>The view's {@code iterator} is a "weakly consistent" iterator
1058 * construction of the iterator, and may (but is not guaranteed to)
1077 * <p>The view's {@code iterator} is a "weakly consistent" iterator
1080 * construction of the iterator, an
2675 public abstract Iterator<E> iterator(); method in class:ConcurrentHashMap.CollectionView
2845 public Iterator<K> iterator() { method in class:ConcurrentHashMap.KeySetView
2933 public final Iterator<V> iterator() { method in class:ConcurrentHashMap.ValuesView
2979 public Iterator<Map.Entry<K,V>> iterator() { method in class:ConcurrentHashMap.EntrySetView
[all...]
H A DConcurrentSkipListMap.java28 * the creation of the iterator. They do <em>not</em> throw {@link
48 * iterator operating concurrently with a {@code putAll} operation
1448 map.entrySet().iterator();
1518 * as the kind of iterator needed by buildFromSorted. (They
1709 * The set's iterator returns the keys in ascending order.
1718 * <p>The view's {@code iterator} is a "weakly consistent" iterator
1721 * construction of the iterator, and may (but is not guaranteed to)
1740 * The collection's iterator returns the values in ascending order
1750 * <p>The view's {@code iterator} i
2300 public Iterator<E> iterator() { method in class:ConcurrentSkipListMap.KeySet
2357 public Iterator<E> iterator() { method in class:ConcurrentSkipListMap.Values
2385 public Iterator<Map.Entry<K1,V1>> iterator() { method in class:ConcurrentSkipListMap.EntrySet
[all...]
/libcore/benchmarks/libs/
H A Dcaliper.jar ... util.Map$Entry entry java.util.Iterator i$ java.util.Map$Entry entry ...
/libcore/dex/src/main/java/com/android/dex/
H A DDex.java977 public Iterator<ClassDef> iterator() { method in class:Dex.ClassDefIterable
979 ? Collections.<ClassDef>emptySet().iterator()
/libcore/luni/src/main/java/java/util/
H A DTreeMap.java921 @Override public Iterator<Entry<K, V>> iterator() { method in class:TreeMap.EntrySet
956 @Override public Iterator<K> iterator() { method in class:TreeMap.KeySet
1126 return count(entrySet().iterator());
1510 @Override public Iterator<Entry<K, V>> iterator() { method in class:TreeMap.BoundedMap.BoundedEntrySet
1544 @Override public Iterator<K> iterator() { method in class:TreeMap.BoundedMap.BoundedKeySet
1653 static int count(Iterator<?> iterator) { argument
1655 while (iterator.hasNext()) {
1656 iterator.next();
H A DCollections.java122 @Override public Iterator iterator() { method in class:Collections.EmptySet
239 @Override public Iterator<E> iterator() { method in class:Collections.SingletonSet
333 @Override public Iterator<Map.Entry<K, V>> iterator() {
414 @Override public Iterator<E> iterator() { method in class:Collections.SynchronizedCollection
416 return c.iterator();
951 @Override public Iterator<E> iterator() { method in class:Collections.UnmodifiableCollection
953 Iterator<E> iterator = c.iterator();
956 return iterator.hasNext();
960 return iterator
1193 @Override public Iterator<Map.Entry<K, V>> iterator() { method in class:Collections.UnmodifiableMap.UnmodifiableEntrySet
2718 @Override public Iterator<E> iterator() { method in class:Collections.SetFromMap
2744 @Override public Iterator<E> iterator() { method in class:Collections.AsLIFOQueue
2851 @Override public Iterator<E> iterator() { method in class:Collections.CheckedCollection
3213 @Override public Iterator<Map.Entry<K, V>> iterator() { method in class:Collections.CheckedMap.CheckedEntrySet
[all...]

Completed in 234 milliseconds

123