Searched refs:unmodifiableIterator (Results 1 - 11 of 11) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java39 return Iterators.unmodifiableIterator(delegate.iterator());
H A DIterators.java113 public static <T> UnmodifiableIterator<T> unmodifiableIterator( method in class:Iterators
137 @Deprecated public static <T> UnmodifiableIterator<T> unmodifiableIterator( method in class:Iterators
H A DIterables.java91 return Iterators.unmodifiableIterator(iterable.iterator());
H A DSets.java585 return Iterators.unmodifiableIterator(
/external/guava/guava/src/com/google/common/collect/
H A DImmutableEnumSet.java53 return Iterators.unmodifiableIterator(delegate.iterator());
H A DIterators.java115 public static <T> UnmodifiableIterator<T> unmodifiableIterator( method in class:Iterators
139 @Deprecated public static <T> UnmodifiableIterator<T> unmodifiableIterator( method in class:Iterators
H A DIterables.java94 return Iterators.unmodifiableIterator(iterable.iterator());
H A DMultisets.java133 return (Iterator<E>) Iterators.unmodifiableIterator(delegate.iterator());
H A DSets.java597 return Iterators.unmodifiableIterator(
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTransformValuesUnmodifiableIteratorTest.java63 return Iterators.unmodifiableIterator(delegate.keySet().iterator());
80 return Iterators.unmodifiableIterator(delegate.values().iterator());
97 return Iterators.unmodifiableIterator(delegate.entrySet().iterator());
H A DIteratorsTest.java1529 UnmodifiableIterator<String> unmod = Iterators.unmodifiableIterator(mod);
1531 assertSame(unmod, Iterators.unmodifiableIterator(unmod));
1532 assertSame(unmod, Iterators.unmodifiableIterator((Iterator<String>) unmod));

Completed in 152 milliseconds