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

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 22 template <class C, class Iterator>
24 test(Iterator first, Iterator last)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 31 import java.util.Iterator;
41 * @param <E> the type of element returned by the iterator
42 * @param <I> the type of the iterator ({@link Iterator} or
49 abstract class AbstractIteratorTester<E, I extends Iterator<E>> {
54 * Don't verify iterator behavior on remove() after a call to next()
64 * <p>Calling this method causes the iterator tester to skip testing
65 * any remove() in a stimulus sequence after the reference iterator
78 * Don't verify iterator behavior after a call to add() throws an exception.
82 * iterator's position unmodified, it increments it, skipping an element o
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
ReflectionClassDef.java 51 import java.util.Iterator;
106 @Nonnull @Override public Iterator<Field> iterator() {
107 Iterator<java.lang.reflect.Field> staticFields = Iterators.filter(
128 @Nonnull @Override public Iterator<Field> iterator() {
129 Iterator<java.lang.reflect.Field> staticFields = Iterators.filter(
150 @Nonnull @Override public Iterator<Field> iterator() {
168 @Nonnull @Override public Iterator<Method> iterator()
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
MultisetIteratorTester.java 26 import java.util.Iterator;
29 * Tester to make sure the {@code iterator().remove()} implementation of {@code Multiset} works when
43 protected Iterator<E> newTargetIterator() {
45 .iterator();
56 protected Iterator<E> newTargetIterator() {
58 .iterator();
70 protected Iterator<E> newTargetIterator() {
72 .iterator();
83 protected Iterator<E> newTargetIterator() {
85 .iterator();
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixDirectoryStream.java 29 import java.util.Iterator;
61 // directory iterator
62 private Iterator<Path> iterator; field in class:UnixDirectoryStream
124 protected final Iterator<Path> iterator(DirectoryStream<Path> ds) { method in class:UnixDirectoryStream
129 if (iterator != null)
130 throw new IllegalStateException("Iterator already obtained");
131 iterator = new UnixDirectoryIterator(ds);
132 return iterator;
137 public Iterator<Path> iterator() { method in class:UnixDirectoryStream
    [all...]
  /external/deqp/framework/delibs/decpp/
deAppendList.hpp 95 class Iterator
98 Iterator (Block* curBlock_, size_t blockSize_, size_t slotNdx_)
104 bool operator!= (const Iterator<CompatibleType>& other) const
108 bool operator== (const Iterator<CompatibleType>& other) const
113 Iterator<CompatibleType>& operator++ (void)
126 Iterator<CompatibleType> operator++ (int) const
128 Iterator<CompatibleType> copy(*this);
142 operator Iterator<const CompatibleType> (void) const
144 return Iterator<const CompatibleType>(m_curBlock, m_blockSize, m_slotNdx);
153 typedef Iterator<const ElementType> const_iterator
154 typedef Iterator<ElementType> iterator; typedef in class:de::AppendList
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariableManager.hpp 36 #include <iterator>
118 template <typename Item, typename Iterator, class Filter>
119 class FilteredIterator : public std::iterator<std::input_iterator_tag, Item>
122 FilteredIterator (Iterator iter, Iterator end, Filter filter)
131 Iterator nextEntry = m_iter;
170 static Iterator findNext (Filter filter, Iterator iter, Iterator end)
178 Iterator m_iter
    [all...]
  /external/icu/icu4c/source/common/
ucharstrieiterator.cpp 24 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength,
37 // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
46 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength,
77 UCharsTrie::Iterator::~Iterator() {
81 UCharsTrie::Iterator &
82 UCharsTrie::Iterator::reset() {
98 UCharsTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty();
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeTraverser.java 26 import java.util.Iterator;
73 public UnmodifiableIterator<T> iterator() {
85 private final Deque<Iterator<T>> stack;
88 this.stack = new ArrayDeque<Iterator<T>>();
99 Iterator<T> itr = stack.getLast(); // throws NSEE if empty
104 Iterator<T> childItr = children(result).iterator();
123 public UnmodifiableIterator<T> iterator() {
136 final Iterator<T> childIterator;
138 PostOrderNode(T root, Iterator<T> childIterator)
    [all...]
Iterables.java 33 import java.util.Iterator;
45 * {@link Iterator}-based method in the {@link Iterators} class.
93 public Iterator<T> iterator() { method in class:Iterables.UnmodifiableIterable
94 return Iterators.unmodifiableIterator(iterable.iterator());
110 : Iterators.size(iterable.iterator());
122 return Iterators.contains(iterable.iterator(), element);
140 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove);
158 : Iterators.retainAll(removeFrom.iterator(), elementsToRetain);
180 return Iterators.removeIf(removeFrom.iterator(), predicate)
239 Iterator<T> iterator = removeFrom.iterator(); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractIteratorTest.java 23 import java.util.Iterator;
40 Iterator<Integer> iter = new AbstractIterator<Integer>() {
161 Iterator<Integer> iter = new AbstractIterator<Integer>() {
194 Iterator<Integer> iter = new AbstractIterator<Integer>() {
210 Iterator<Integer> iter = new AbstractIterator<Integer>() {
224 Iterator<Integer> iter = new AbstractIterator<Integer>() {
245 Iterator<Integer> iter = new AbstractIterator<Integer>() {
  /external/smali/util/src/main/java/org/jf/util/
ImmutableConverter.java 41 import java.util.Iterator;
70 final Iterator<? extends Item> iter = iterable.iterator();
72 return ImmutableList.copyOf(new Iterator<ImmutableItem>() {
101 final Iterator<? extends Item> iter = iterable.iterator();
103 return ImmutableSet.copyOf(new Iterator<ImmutableItem>() {
134 final Iterator<? extends Item> iter = iterable.iterator();
137 return ImmutableSortedSet.copyOf(comparator, new Iterator<ImmutableItem>()
    [all...]
  /external/protobuf/src/google/protobuf/
reflection_internal.h 42 // random-access efficiently. All iterator methods delegates the work to
48 virtual Iterator* BeginIterator(const Field* data) const {
51 virtual Iterator* EndIterator(const Field* data) const {
54 virtual Iterator* CopyIterator(const Field* data,
55 const Iterator* iterator) const {
56 return const_cast<Iterator*>(iterator);
58 virtual Iterator* AdvanceIterator(const Field* data,
59 Iterator* iterator) const
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
72 // Used only for the purposes of iterator comparison
75 // Advances iterator to point to the next element
77 // for not calling Advance() on an iterator equal to
80 // Clones the iterator object. Used for implementing copy semantics
83 // Dereferences the current iterator and provides (read-only) access
85 // Current() on an iterator equal to BaseGenerator()->End().
88 // Determines whether the given iterator and other point to the same
96 // and implements the const forward iterator concept.
160 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
Yaml.java 25 import java.util.Iterator;
181 return dumpAll(list.iterator());
201 * Iterator with Objects
204 public String dumpAll(Iterator<? extends Object> data) {
221 dumpAll(list.iterator(), output, null);
228 * Iterator with Objects
232 public void dumpAll(Iterator<? extends Object> data, Writer output) {
236 private void dumpAll(Iterator<? extends Object> data, Writer output, Tag rootTag) {
299 dumpAll(list.iterator(), buffer, rootTag);
455 * objects. The documents are parsed only when the iterator is invoked
482 private Iterator<Object> iterator; field in class:Yaml.YamlIterable
488 public Iterator<Object> iterator() { method in class:Yaml.YamlIterable
565 private Iterator<Node> iterator; field in class:Yaml.NodeIterable
571 public Iterator<Node> iterator() { method in class:Yaml.NodeIterable
645 private Iterator<Event> iterator; field in class:Yaml.EventIterable
651 public Iterator<Event> iterator() { method in class:Yaml.EventIterable
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]

Completed in 708 milliseconds

1 2 3 4 5 6 7 891011>>