HomeSort by relevance Sort by last modified time
    Searched refs:Iterator (Results 51 - 75 of 3677) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 40 import java.util.Iterator;
51 * of type {@link Iterator}. Except as noted, each method has a corresponding
99 * Returns the empty iterator.
104 * @deprecated Use {@code ImmutableSet.<T>of().iterator()} instead; or for
114 * Returns the empty iterator.
125 private static final Iterator<Object> EMPTY_MODIFIABLE_ITERATOR =
126 new Iterator<Object>() {
141 * Returns the empty {@code Iterator} that throws
144 * {@link Iterator#remove()}.
148 static <T> Iterator<T> emptyModifiableIterator()
    [all...]
  /frameworks/base/tools/aapt2/optimize/
VersionCollapser.cpp 26 template <typename Iterator, typename Pred>
29 FilterIterator(Iterator begin, Iterator end, Pred pred = Pred())
36 Iterator NextIter() {
37 Iterator iter = current_;
43 typename Iterator::reference Next() { return *NextIter(); }
54 Iterator current_, end_;
58 template <typename Iterator, typename Pred>
59 FilterIterator<Iterator, Pred> make_filter_iterator(Iterator begin
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
AbstractForwardSequentialList.java 37 import java.util.Iterator;
43 @Nonnull private Iterator<T> iterator(int index) { method in class:AbstractForwardSequentialList
48 Iterator<T> it = iterator();
55 @Override @Nonnull public abstract Iterator<T> iterator(); method in class:AbstractForwardSequentialList
59 final Iterator<T> initialIterator;
61 initialIterator = iterator(initialIndex);
68 @Nullable private Iterator<T> forwardIterator = initialIterator
    [all...]
  /frameworks/av/media/libstagefright/include/
ID3.h 48 struct Iterator {
49 Iterator(const ID3 &parent, const char *id);
50 ~Iterator();
71 Iterator(const Iterator &);
72 Iterator &operator=(const Iterator &);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractSequentialIteratorTest.java 26 import java.util.Iterator;
36 public Iterator<Integer> iterator() {
46 public Iterator<Integer> iterator() {
47 Iterator<Integer> powersOfTwo = new AbstractSequentialIterator<Integer>(1) {
61 Iterator<Object> empty = newEmpty();
76 Iterator<Object> broken = newBroken();
91 private static Iterator<Integer> newDoubler(int first, final int last) {
100 private static <T> Iterator<T> newEmpty()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 51 bin_search_tree_const_node_it_<Node, Const_Iterator, Iterator, _Alloc>
53 /// Const node iterator.
56 class Iterator,
73 /// Iterator's value type.
76 /// Iterator's reference type.
79 /// Iterator's __const reference type.
105 /// Returns the __const node iterator associated with the left node.
110 /// Returns the __const node iterator associated with the right node.
115 /// Compares to a different iterator object.
120 /// Compares (negatively) to a different iterator object
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 51 bin_search_tree_const_node_it_<Node, Const_Iterator, Iterator, _Alloc>
53 /// Const node iterator.
56 class Iterator,
73 /// Iterator's value type.
76 /// Iterator's reference type.
79 /// Iterator's __const reference type.
105 /// Returns the __const node iterator associated with the left node.
110 /// Returns the __const node iterator associated with the right node.
115 /// Compares to a different iterator object.
120 /// Compares (negatively) to a different iterator object
    [all...]
  /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/guava/guava-testlib/src/com/google/common/collect/testing/
IteratorTester.java 22 import java.util.Iterator;
25 * A utility for testing an Iterator implementation by comparing its behavior to
28 * {@link Iterator#next}, {@link Iterator#hasNext} and {@link Iterator#remove}
52 * impossible to test an Iterator without changing its state, so the tester
55 * <p>If your iterator supports modification through {@code remove()}, you may
65 AbstractIteratorTester<E, Iterator<E>> {
70 * @param features the features supported by the iterator
80 protected final Iterable<Stimulus<E, Iterator<E>>> getStimulusValues()
    [all...]
MinimalIterable.java 23 import java.util.Iterator;
27 * invocations of the {@link #iterator()} method after the first, and whose
28 * iterator is always unmodifiable.
35 * <li>returning the same iterator again
38 * implementations have, of returning a new, independent iterator
42 * invoke the {@code iterator} method only once, and should be tested using this
56 * Returns an iterable whose iterator returns the given elements in order.
59 // Make sure to get an unmodifiable iterator
60 return new MinimalIterable<E>(Arrays.asList(elements).iterator());
64 * Returns an iterable whose iterator returns the given elements in order
73 private Iterator<E> iterator; field in class:MinimalIterable
80 public Iterator<E> iterator() { method in class:MinimalIterable
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
FixedSizeSet.java 36 import java.util.Iterator;
45 public Iterator<T> iterator() { method in class:FixedSizeSet
46 return new Iterator<T>() {
  /external/v8/src/base/
adapters.h 20 typedef decltype(static_cast<T*>(nullptr)->rbegin()) Iterator;
25 Iterator begin() const { return t_.rbegin(); }
26 Iterator end() const { return t_.rend(); }
  /packages/apps/Launcher3/src/com/android/launcher3/util/
LongArrayMap.java 21 import java.util.Iterator;
42 public Iterator<E> iterator() { method in class:LongArrayMap
46 @Thunk class ValueIterator implements Iterator<E> {
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DominatorReferenceIterator.java 19 import java.util.Iterator;
23 * Reference iterator used for the dominators computation.
26 class DominatorReferenceIterator implements Iterator<AhatInstance>,
28 private Iterator<Reference> mIter;
32 mIter = iter.iterator();
58 public Iterator<AhatInstance> iterator() { method in class:DominatorReferenceIterator
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestDataModule.java 12 import java.util.Iterator;
38 * @return Iterator<TestData>
40 public Iterator getTestDataIterator();
76 * @return Iterator<DataMap>
78 public Iterator getSettingsIterator();
80 * @return Iterator<DataMap>
82 public Iterator getDataIterator();
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestDataModule.java 11 import java.util.Iterator;
37 * @return Iterator<TestData>
39 public Iterator getTestDataIterator();
75 * @return Iterator<DataMap>
77 public Iterator getSettingsIterator();
79 * @return Iterator<DataMap>
81 public Iterator getDataIterator();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 27 using Iterator = ReferenceArray::Iterator;
40 Iterator begin() const { return References.begin(); }
41 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 27 using Iterator = ReferenceArray::Iterator;
40 Iterator begin() const { return References.begin(); }
41 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 27 using Iterator = ReferenceArray::Iterator;
40 Iterator begin() const { return References.begin(); }
41 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 27 using Iterator = ReferenceArray::Iterator;
40 Iterator begin() const { return References.begin(); }
41 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 27 using Iterator = ReferenceArray::Iterator;
40 Iterator begin() const { return References.begin(); }
41 Iterator end() const { return References.end(); }

Completed in 896 milliseconds

1 23 4 5 6 7 8 91011>>