HomeSort by relevance Sort by last modified time
    Searched refs:Iterator (Results 451 - 475 of 2902) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/collect/
EnumMultiset.java 26 import java.util.Iterator;
55 Iterator<E> iterator = elements.iterator(); local
56 checkArgument(iterator.hasNext(), "EnumMultiset constructor passed empty Iterable");
57 EnumMultiset<E> multiset = new EnumMultiset<E>(iterator.next().getDeclaringClass());
WellBehavedMap.java 21 import java.util.Iterator;
74 public Iterator<Entry<K, V>> iterator() { method in class:WellBehavedMap.EntrySet
75 return new TransformedIterator<K, Entry<K, V>>(keySet().iterator()) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
BinaryTreeTraverser.java 24 import java.util.Iterator;
55 public Iterator<T> iterator() {
89 public UnmodifiableIterator<T> iterator() {
ImmutableCollection.java 25 import java.util.Iterator;
43 public abstract UnmodifiableIterator<E> iterator(); method in class:ImmutableCollection
85 return ImmutableList.of(iterator().next());
123 public Builder<E> addAll(Iterator<? extends E> elements) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalCollection.java 24 import java.util.Iterator;
93 @Override public Iterator<E> iterator() { method in class:MinimalCollection
94 return Arrays.asList(contents).iterator();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapValuesTester.java 28 import java.util.Iterator;
60 Iterator<V> valuesItr = multimap().values().iterator();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionClearTester.java 30 import java.util.Iterator;
75 Iterator<E> iterator = collection.iterator(); local
77 iterator.next();
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUNotifier.java 14 import java.util.Iterator;
83 Iterator<EventListener> iter = listeners.iterator();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetIterator.java 12 import java.util.Iterator;
45 * Value of <tt>codepoint</tt> if the iterator points to a string.
53 * the iterator points to a string.
75 * Create an iterator over the given set.
83 * Create an iterator over nothing. <tt>next()</tt> and
182 * Sets this iterator to visit the elements of the given set and
183 * resets it to the start of that set. The iterator is valid only
193 * Resets this iterator to the start of the set.
205 stringIterator = set.strings.iterator();
213 * Gets the current string from the iterator. Only use after calling next(), not nextRange()
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeMapIterator.java 12 import java.util.Iterator;
51 * Value of <tt>codepoint</tt> if the iterator points to a string.
59 * the iterator points to a string.
86 * Create an iterator over the given set.
94 * Create an iterator over nothing. <tt>next()</tt> and
188 * Sets this iterator to visit the elements of the given set and
189 * resets it to the start of that set. The iterator is valid only
199 * Resets this iterator to the start of the set.
213 stringIterator = strings.iterator();
221 * Gets the current string from the iterator. Only use after calling next(), not nextRange()
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
AppletFrame.java 22 import java.util.Iterator;
148 public Iterator getStreamKeys() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUNotifier.java 13 import java.util.Iterator;
81 Iterator<EventListener> iter = listeners.iterator();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSetIterator.java 11 import java.util.Iterator;
45 * Value of <tt>codepoint</tt> if the iterator points to a string.
54 * the iterator points to a string.
79 * Create an iterator over the given set.
88 * Create an iterator over nothing. <tt>next()</tt> and
190 * Sets this iterator to visit the elements of the given set and
191 * resets it to the start of that set. The iterator is valid only
202 * Resets this iterator to the start of the set.
215 stringIterator = set.strings.iterator();
223 * Gets the current string from the iterator. Only use after calling next(), not nextRange()
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMapIterator.java 11 import java.util.Iterator;
50 * Value of <tt>codepoint</tt> if the iterator points to a string.
58 * the iterator points to a string.
85 * Create an iterator over the given set.
93 * Create an iterator over nothing. <tt>next()</tt> and
187 * Sets this iterator to visit the elements of the given set and
188 * resets it to the start of that set. The iterator is valid only
198 * Resets this iterator to the start of the set.
212 stringIterator = strings.iterator();
220 * Gets the current string from the iterator. Only use after calling next(), not nextRange()
    [all...]
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
MergeTask.java 19 import java.util.Iterator;
72 final Iterator<?> resourceIterator = files.iterator();
  /external/llvm/lib/DebugInfo/PDB/Raw/
ModStream.cpp 68 iterator_range<codeview::CVSymbolArray::Iterator>
77 iterator_range<codeview::ModuleSubstreamArray::Iterator>
  /external/mockito/src/test/java/org/mockitousage/bugs/
InheritedGenericsPolimorphicCallTest.java 16 import java.util.Iterator;
28 MyIterator<T> iterator(); method in interface:InheritedGenericsPolimorphicCallTest.MyIterable
31 protected interface MyIterator<T> extends Iterator<T> {
40 Mockito.when(iterable.iterator()).thenReturn(myIterator);
41 Assert.assertNotNull(((Iterable<String>) iterable).iterator());
42 Assert.assertNotNull(iterable.iterator());
47 iterable.iterator();
49 verify(iterable).iterator();
50 verify((Iterable<String>) iterable).iterator();
69 iterable.iterator();
70 ((Iterable<String>) iterable).iterator(); method
    [all...]
  /external/nist-sip/java/gov/nist/core/
ThreadAuditor.java 137 Iterator<ThreadHandle> it = threadHandles.values().iterator();
186 Iterator<ThreadHandle> it = threadHandles.values().iterator();
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelURLImpl.java 31 import java.util.Iterator;
190 public Iterator<String> getParameterNames() {
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
SearchWorkingInstantiator.java 25 import java.util.Iterator;
53 for (Iterator<String> it = classes.iterator(); it.hasNext();) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
CertificateChainCleaner.java 25 import java.util.Iterator;
86 for (Iterator<Certificate> i = queue.iterator(); i.hasNext(); ) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlParseTest.java 20 import java.util.Iterator;
47 Iterator<Event> events = yaml.parse(new StringReader("%YAML 1.1\n---\na")).iterator();
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackHandler.java 20 import java.util.Iterator;
103 Iterator<PlaybackQueueItem> it = mQueue.iterator();
  /frameworks/base/services/core/java/com/android/server/hdmi/
DelayedMessageBuffer.java 21 import java.util.Iterator;
68 // Uses iterator to remove elements while looping through the list.
69 for (Iterator<HdmiCecMessage> iter = mBuffer.iterator(); iter.hasNext(); ) {
  /frameworks/support/buildSrc/src/main/groovy/android/support/doclava/
DoclavaMultilineJavadocOptionFileOption.java 25 import java.util.Iterator;
68 final Iterator<String> iter = arg.iterator();

Completed in 3690 milliseconds

<<11121314151617181920>>