HomeSort by relevance Sort by last modified time
    Searched refs:Iterator (Results 1 - 25 of 633) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
EntityIterator.java 19 import java.util.Iterator;
22 * A specialization of {@link Iterator} that allows iterating over a collection of
24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
25 * method to indicate that the iterator is no longer needed and that its resources
28 public interface EntityIterator extends Iterator<Entity> {
30 * Reset the iterator back to the beginning.
35 * Indicates that this iterator is no longer needed and that any associated resources
  /libcore/luni/src/main/java/java/lang/
Iterable.java 19 import java.util.Iterator;
30 * Returns an {@link Iterator} for the elements in this object.
32 * @return An {@code Iterator} instance.
34 Iterator<T> iterator(); method in interface:Iterable
  /external/apache-http/src/org/apache/http/
HeaderElementIterator.java 34 import java.util.Iterator;
37 * A type-safe iterator for {@link HeaderElement HeaderElement} objects.
41 public interface HeaderElementIterator extends Iterator {
HeaderIterator.java 35 import java.util.Iterator;
39 * A type-safe iterator for {@link Header Header} objects.
43 public interface HeaderIterator extends Iterator {
TokenIterator.java 35 import java.util.Iterator;
39 * An iterator for {@link String} tokens.
46 public interface TokenIterator extends Iterator {
  /libcore/luni/src/main/java/java/util/
Iterator.java 21 * An iterator over a sequence of objects, such as a collection.
23 * <p>If a collection has been changed since the iterator was created,
29 * <p>Implementing {@link Iterable} and returning an {@code Iterator} allows your
33 * the type of object returned by the iterator.
35 public interface Iterator<E> {
43 * Returns the next object and advances the iterator.
AbstractCollection.java 25 * iterator()} and {@code size()} to create an immutable collection. To create a
75 Iterator<? extends E> it = collection.iterator();
87 * remove} method on each element. If the iterator does not support removal
94 * it the iterator does not support removing elements from
96 * @see #iterator
101 Iterator<E> it = iterator();
113 * the iterator until the element is found. If {@code object == null} then
114 * each element {@code e} returned by the iterator is compared with the tes
199 public abstract Iterator<E> iterator(); method in class:AbstractCollection
    [all...]
AbstractSet.java 23 * abstract methods iterator() and size().
78 Iterator<?> it = iterator();
101 Iterator<?> it = iterator();
109 Iterator<?> it = collection.iterator();
  /external/guava/src/com/google/common/collect/
UnmodifiableIterator.java 21 import java.util.Iterator;
24 * An iterator that does not support {@link #remove}.
30 public abstract class UnmodifiableIterator<E> implements Iterator<E> {
ForwardingIterator.java 21 import java.util.Iterator;
24 * An iterator which forwards all its method calls to another iterator.
26 * backing iterator as desired per the <a
35 extends ForwardingObject implements Iterator<T> {
37 @Override protected abstract Iterator<T> delegate();
PeekingIterator.java 21 import java.util.Iterator;
25 * An iterator that supports a one-element lookahead while iterating.
31 public interface PeekingIterator<E> extends Iterator<E> {
Iterators.java 31 import java.util.Iterator;
43 * of type {@link Iterator}. Except as noted, each method has a corresponding
65 * Returns the empty iterator.
76 private static final Iterator<Object> EMPTY_MODIFIABLE_ITERATOR =
77 new Iterator<Object>() {
92 * Returns the empty {@code Iterator} that throws
95 * {@link Iterator#remove()}.
99 static <T> Iterator<T> emptyModifiableIterator() {
100 return (Iterator<T>) EMPTY_MODIFIABLE_ITERATOR;
103 /** Returns an unmodifiable view of {@code iterator}. *
    [all...]
  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 22 import java.util.Iterator;
197 * <p>An Iterator over String elements is returned in an arbitrary, <strong>implementation dependent</strong>, order.</p>
199 * <p><strong>The <code>Iterator</code> is
224 * <td><code>Iterator</code> over prefixes bound to Namespace URI in
230 * <td>empty <code>Iterator</code></td>
235 * <td><code>Iterator</code> with one element set to
241 * <td><code>Iterator</code> with one element set to
252 * @return <code>Iterator</code> for all prefixes bound to the
255 Iterator getPrefixes(String namespaceURI);
  /external/emma/core/java12/com/vladium/emma/data/
IMetaData.java 11 import java.util.Iterator;
35 Iterator /* ClassDescripor */ iterator (); method in interface:IMetaData
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContent.java 3 import java.util.Iterator;
31 * @return - the content iterator. Returns an empty iterator if no content list present.
33 public Iterator<Content> getContents();
  /external/nist-sip/java/javax/sip/header/
Parameters.java 4 import java.util.Iterator;
10 Iterator getParameterNames();
  /libcore/luni/src/main/java/java/nio/charset/spi/
CharsetProvider.java 20 import java.util.Iterator;
45 * Returns an iterator over all the available charsets.
47 * @return the iterator.
49 public abstract Iterator<Charset> charsets();
  /libcore/luni/src/main/java/java/security/cert/
PolicyNode.java 20 import java.util.Iterator;
33 * Returns the list of children of this node as an {@code Iterator}.
35 * @return the list of children of this node as an {@code Iterator}.
37 public Iterator<? extends PolicyNode> getChildren();
  /frameworks/base/media/libstagefright/include/
ID3.h 47 struct Iterator {
48 Iterator(const ID3 &parent, const char *id);
49 ~Iterator();
69 Iterator(const Iterator &);
70 Iterator &operator=(const Iterator &);
  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 11 import java.util.Iterator;
28 Iterator /* IItem */ getChildren ();
34 Iterator /* IItem */ getChildren (ItemComparator /* IItem */ order);
  /external/webkit/WebCore/loader/
CachedResourceClientWalker.cpp 34 typedef HashCountedSet<CachedResourceClient*>::const_iterator Iterator;
35 Iterator end = set.end();
37 for (Iterator current = set.begin(); current != end; ++current)
  /external/nist-sip/java/javax/sip/
SipStack.java 4 import java.util.Iterator;
26 Iterator getListeningPoints();
28 Iterator getSipProviders();
  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 4 import java.util.Iterator;
12 public NodeSet(Iterator<Node> nodes) {
  /libcore/luni/src/test/java/libcore/java/util/
ServiceLoaderTest.java 19 import java.util.Iterator;
25 assertFalse(ServiceLoader.load(UnimplementedInterface.class).iterator().hasNext());
32 Iterator<ServiceLoaderTestInterface> it = loader.iterator();
  /libcore/support/src/test/java/tests/support/
Support_IOTestSecurityManager.java 23 import java.util.Iterator;
35 for (Iterator<Permission> i = permissions.iterator(); i.hasNext(); ) {

Completed in 325 milliseconds

1 2 3 4 5 6 7 8 91011>>