Searched refs:iterator (Results 251 - 267 of 267) sorted by relevance

<<11

/libcore/ojluni/src/main/java/java/net/
H A DSocksSocketImpl.java627 iProxy = sel.select(uri).iterator();
/libcore/ojluni/src/main/java/java/security/
H A DSignature.java318 Iterator<Service> t = list.iterator();
H A DProvider.java593 for (Iterator t = map.entrySet().iterator(); t.hasNext(); ) {
/libcore/ojluni/src/main/java/java/util/
H A DArrayDeque.java58 * {@link #iterator iterator.remove()},
61 * <p>The iterators returned by this class's {@link #iterator() iterator}
63 * the iterator is created, in any way except through the iterator's own
64 * {@code remove} method, the iterator will generally throw a {@link
66 * modification, the iterator fails quickly and cleanly, rather than risking
70 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
78 * <p>This class and its iterator implemen
586 public Iterator<E> iterator() { method in class:ArrayDeque
[all...]
H A DVector.java49 * The iterators returned by this class's {@link #iterator() iterator} and
51 * if the vector is structurally modified at any time after the iterator is
52 * created, in any way except through the iterator's own
54 * {@link ListIterator#add(Object) add} methods, the iterator will throw a
56 * concurrent modification, the iterator fails quickly and cleanly, rather
61 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
163 * iterator.
942 * iterator.
1081 * Returns a list iterator ove
1117 public synchronized Iterator<E> iterator() { method in class:Vector
[all...]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DPolicyChecker.java601 PolicyNodeImpl anyNode = anyNodes.iterator().next();
H A DSunCertPathBuilder.java233 Iterator<TrustAnchor> iter = buildParams.trustAnchors().iterator();
H A DRevocationChecker.java283 return (X509Certificate)certs.iterator().next();
/libcore/ojluni/src/main/java/sun/security/util/
H A DSignatureFileVerifier.java233 sf.getEntries().entrySet().iterator();
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java71 * iterator operating concurrently with a {@code putAll} operation
1344 map.entrySet().iterator();
1427 * as the kind of iterator needed by buildFromSorted. (They
1775 * <p>The set's iterator returns the keys in ascending order.
1812 * <p>The collection's iterator returns the values in ascending order
1837 * <p>The set's iterator returns the entries in ascending key order. The
1854 * <p>The {@code Map.Entry} elements traversed by the {@code iterator}
2236 * Base of iterator classes:
2246 /** Initializes ascending iterator for entire range. */
2354 public Iterator<K> iterator() { method in class:ConcurrentSkipListMap.KeySet
2416 public Iterator<V> iterator() { method in class:ConcurrentSkipListMap.Values
2457 public Iterator<Map.Entry<K,V>> iterator() { method in class:ConcurrentSkipListMap.EntrySet
[all...]
H A DConcurrentHashMap.java70 * iterator/enumeration. They do <em>not</em> throw {@link
3305 * reachable upon iterator construction. It might miss some that
3411 * Traverser to support iterator.remove.
4428 * Returns an iterator over the elements in this collection.
4430 * <p>The returned iterator is
4433 * @return an iterator over the elements in this collection
4435 public abstract Iterator<E> iterator(); method in class:ConcurrentHashMap.CollectionView
4497 * its iterator, enclosed in square brackets ({@code "[]"}).
4507 Iterator<E> it = iterator();
4533 for (Iterator<E> it = iterator(); i
4604 public Iterator<K> iterator() { method in class:ConcurrentHashMap.KeySetView
4709 public final Iterator<V> iterator() { method in class:ConcurrentHashMap.ValuesView
4776 public Iterator<Map.Entry<K,V>> iterator() { method in class:ConcurrentHashMap.EntrySetView
[all...]
H A DConcurrentLinkedDeque.java45 * to be performed atomically. For example, an iterator operating
49 * <p>This class and its iterator implement all of the <em>optional</em>
136 * may remain reachable indefinitely from an iterator.
154 * iterator, but unlike unlinked nodes, are never reachable from
173 * indefinitely (for example by an iterator). We must ensure that
782 * collection's iterator.
1116 * collection's iterator. Attempts to {@code addAll} of a deque to
1301 * Returns an iterator over the elements in this deque in proper sequence.
1304 * <p>The returned iterator is
1307 * @return an iterator ove
1309 public Iterator<E> iterator() { method in class:ConcurrentLinkedDeque
[all...]
H A DLinkedBlockingDeque.java37 * contains}, {@link #iterator iterator.remove()}, and the bulk
40 * <p>This class and its iterator implement all of the
160 * collection's iterator.
283 // an iterator.
960 * Returns an iterator over the elements in this deque in proper sequence.
963 * <p>The returned iterator is
966 * @return an iterator over the elements in this deque in proper sequence
968 public Iterator<E> iterator() { method in class:LinkedBlockingDeque
973 * Returns an iterator ove
[all...]
H A DLinkedTransferQueue.java40 * to be performed atomically. For example, an iterator operating
44 * <p>This class and its iterator implement all of the
1202 * added in traversal order of the collection's iterator.
1372 * Returns an iterator over the elements in this queue in proper sequence.
1375 * <p>The returned iterator is
1378 * @return an iterator over the elements in this queue in proper sequence
1380 public Iterator<E> iterator() { method in class:LinkedTransferQueue
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogManager.java1384 Iterator<LogNode> values = children.values().iterator();
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DHttpURLConnection.java927 Iterator<Proxy> it = sel.select(uri).iterator();
/libcore/luni/src/test/java/libcore/java/net/
H A DURLConnectionTest.java2968 for (Iterator<String> h = response.getHeaders().iterator(); h.hasNext(); ) {

Completed in 2510 milliseconds

<<11