Searched refs:Iterator (Results 101 - 125 of 1450) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/cache/
H A DRemovalCause.java21 import java.util.Iterator;
36 * {@link Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}.
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DIteratorFeature.java21 import java.util.Iterator;
26 * A method supported by implementations of the {@link Iterator} or
35 * Support for {@link Iterator#remove()}.
40 * {@link Iterator} implementations.
45 * {@link Iterator} implementations.
50 * A set containing none of the optional features of the {@link Iterator} or
57 * A set containing all of the optional features of the {@link Iterator} and
H A DAbstractIteratorTester.java29 import java.util.Iterator;
42 * @param <I> the type of the iterator ({@link Iterator} or
48 abstract class AbstractIteratorTester<E, I extends Iterator<E>> {
98 private final Iterator<E> elementsToInsert;
267 * the next call to {@link Iterator#next()}. If the element is not in
348 * you are trying to test. This must return an Iterator that returns the
351 * Iterable, unless that Iterator is unmodifiable.
430 Object execute(Iterator<?> iterator);
439 * @see Stimulus#executeAndCompare(ListIterator, Iterator)
441 private <T extends Iterator<
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
H A DReflectionClassDef.java50 import java.util.Iterator;
83 @Nonnull @Override public Iterator<String> iterator() {
110 @Nonnull @Override public Iterator<Field> iterator() {
111 Iterator<java.lang.reflect.Field> staticFields = Iterators.filter(
132 @Nonnull @Override public Iterator<Field> iterator() {
133 Iterator<java.lang.reflect.Field> staticFields = Iterators.filter(
154 @Nonnull @Override public Iterator<Field> iterator() {
172 @Nonnull @Override public Iterator<Method> iterator() {
173 Iterator<Method> constructorIterator =
181 Iterator<jav
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java37 import java.util.Iterator;
93 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
146 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
/external/chromium_org/third_party/icu/source/common/
H A Dbytestrieiterator.cpp23 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, function in class:BytesTrie::Iterator
35 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway
45 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, function in class:BytesTrie::Iterator
76 BytesTrie::Iterator::~Iterator() {
81 BytesTrie::Iterator &
82 BytesTrie::Iterator::reset() {
97 BytesTrie::Iterator
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPicturePlayback.h58 bool initIterator(SkPictureStateTree::Iterator* iter,
61 static void StepIterator(SkPictureStateTree::Iterator* iter, SkReader32* reader);
62 static void SkipIterTo(SkPictureStateTree::Iterator* iter,
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.h74 // Upon construction of an Iterator it will grab a copy of the channel list of
76 // current one of the ChannelManager. As the Iterator holds its own references
79 class Iterator { class in class:webrtc::voe::ChannelManager
81 explicit Iterator(ChannelManager* channel_manager);
92 DISALLOW_COPY_AND_ASSIGN(Iterator);
/external/emma/core/java12/com/vladium/util/
H A DXProperties.java14 import java.util.Iterator;
48 for (Iterator i = _propertyNames.iterator (); i.hasNext (); )
67 for (Iterator i = _propertyNames.iterator (); i.hasNext (); )
/external/guava/guava/src/com/google/common/base/
H A DPairwiseEquivalence.java22 import java.util.Iterator;
38 Iterator<T> iteratorA = iterableA.iterator();
39 Iterator<T> iteratorB = iterableB.iterator();
/external/guava/guava/src/com/google/common/collect/
H A DLexicographicalOrdering.java22 import java.util.Iterator;
41 Iterator<T> left = leftIterable.iterator();
42 Iterator<T> right = rightIterable.iterator();
/external/guava/guava/src/com/google/common/io/
H A DMultiInputStream.java21 import java.util.Iterator;
32 private Iterator<? extends InputSupplier<? extends InputStream>> it;
41 Iterator<? extends InputSupplier<? extends InputStream>> it)
H A DMultiReader.java23 import java.util.Iterator;
32 private final Iterator<? extends InputSupplier<? extends Reader>> it;
35 MultiReader(Iterator<? extends InputSupplier<? extends Reader>> readers)
/external/guava/guava-tests/test/com/google/common/collect/
H A DPeekingIteratorTest.java32 import java.util.Iterator;
64 @Override protected Iterator<T> newTargetIterator() {
67 Iterator<T> iterator = targetList.iterator();
83 @Override protected Iterator<T> newTargetIterator() {
84 Iterator<T> iterator = Collections.unmodifiableList(list).iterator();
111 Iterator<?> iterator = list.iterator();
122 Iterator<?> iterator = list.iterator();
163 Iterator<String> iterator = list.iterator();
188 * This Iterator claims to have more elements than the underlying
192 static class ThrowsAtEndIterator<E> implements Iterator<
[all...]
/external/icu/icu4c/source/common/
H A Dbytestrieiterator.cpp23 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, function in class:BytesTrie::Iterator
35 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway
45 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, function in class:BytesTrie::Iterator
76 BytesTrie::Iterator::~Iterator() {
81 BytesTrie::Iterator &
82 BytesTrie::Iterator::reset() {
97 BytesTrie::Iterator
[all...]
/external/libcxx/test/containers/sequences/vector.bool/
H A Dconstruct_iter_iter.pass.cpp21 template <class C, class Iterator>
23 test(Iterator first, Iterator last)
/external/llvm/include/llvm/ADT/
H A DPriorityQueue.h35 template<class Iterator>
36 PriorityQueue(Iterator begin, Iterator end,
/external/mockito/src/org/mockito/internal/debugging/
H A DWarningsFinder.java10 import java.util.Iterator;
28 Iterator<Invocation> unusedIterator = unusedStubs.iterator();
31 Iterator<InvocationMatcher> unstubbedIterator = allInvocations.iterator();
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObjectList.java32 import java.util.Iterator;
87 Iterator<GenericObject> it1 = this.listIterator();
88 Iterator<GenericObject> it2 = mergeList.listIterator();
/external/proguard/src/proguard/classfile/
H A DClassPool.java89 * Returns an Iterator of all class names in the class pool.
91 public Iterator classNames()
121 Iterator iterator = classes.values().iterator();
138 //Iterator iterator = sortedClasses.values().iterator();
140 Iterator iterator = classes.values().iterator();
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDefaultPrivateData.java25 import java.util.Iterator;
88 for (Iterator<String> i=getNames(); i.hasNext(); ) {
100 * Returns an Iterator for the names that can be used to get
103 * @return an Iterator for the names.
105 public synchronized Iterator<String> getNames() {
H A DXHTMLExtension.java27 import java.util.Iterator;
88 for (Iterator<String> i = getBodies(); i.hasNext();) {
96 * Returns an Iterator for the bodies in the packet.
98 * @return an Iterator for the bodies in the packet.
100 public Iterator<String> getBodies() {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
H A DTypeProtoUtils.java39 import java.util.Iterator;
58 @Override public Iterator<TypeProto> iterator() {
59 return new Iterator<TypeProto>() {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
H A DParamUtil.java37 import java.util.Iterator;
67 @Override public Iterator<ImmutableMethodParameter> iterator() {
68 return new Iterator<ImmutableMethodParameter>() {
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueMap.h53 typedef typename Impl::iterator Iterator; typedef in class:blink::V8PersistentValueMapTraits
57 static Iterator Begin(Impl* impl) { return impl->begin(); }
58 static Iterator End(Impl* impl) { return impl->end(); }
59 static v8::PersistentContainerValue Value(Iterator& iter)
63 static KeyType Key(Iterator& iter) { return iter->key; }

Completed in 548 milliseconds

1234567891011>>