HomeSort by relevance Sort by last modified time
    Searched refs:Iterator (Results 251 - 275 of 3134) sorted by null

<<11121314151617181920>>

  /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...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Edits.java 218 public static final class Iterator {
229 private Iterator(char[] a, int len, boolean oc, boolean crs) {
284 // Fine-grained iterator: Continue a sequence of equal-length changes.
358 * <p>The iterator state before this search logically does not matter.
361 * <p>The iterator state after this search is undefined
371 // Reset the iterator to the start.
440 * Returns an Iterator for coarse-grained changes for simple string updates.
442 * @return an Iterator that merges adjacent changes.
445 public Iterator getCoarseChangesIterator() {
446 return new Iterator(array, length, true, true)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Edits.java 224 public static final class Iterator {
235 private Iterator(char[] a, int len, boolean oc, boolean crs) {
291 // Fine-grained iterator: Continue a sequence of equal-length changes.
365 * <p>The iterator state before this search logically does not matter.
368 * <p>The iterator state after this search is undefined
379 // Reset the iterator to the start.
454 * Returns an Iterator for coarse-grained changes for simple string updates.
456 * @return an Iterator that merges adjacent changes.
460 public Iterator getCoarseChangesIterator() {
461 return new Iterator(array, length, true, true)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
AbstractMap.java 37 * not support the <tt>add</tt> or <tt>remove</tt> methods, and its iterator
42 * <tt>UnsupportedOperationException</tt>), and the iterator returned by
43 * <tt>entrySet().iterator()</tt> must additionally implement its
112 Iterator<Entry<K,V>> i = entrySet().iterator();
144 Iterator<Map.Entry<K,V>> i = entrySet().iterator();
176 Iterator<Entry<K,V>> i = entrySet().iterator();
219 * from the collection (and the backing map) with the iterator'
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 31 import java.util.Iterator;
43 * {@link Iterator}-based method in the {@link Iterators} class.
91 public Iterator<T> iterator() { method in class:Iterables.UnmodifiableIterable
92 return Iterators.unmodifiableIterator(iterable.iterator());
108 : Iterators.size(iterable.iterator());
120 return Iterators.contains(iterable.iterator(), element);
138 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove);
156 : Iterators.retainAll(removeFrom.iterator(), elementsToRetain);
178 return Iterators.removeIf(removeFrom.iterator(), predicate)
237 Iterator<T> iterator = removeFrom.iterator(); local
    [all...]

Completed in 1354 milliseconds

<<11121314151617181920>>