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

1 2 3 4 5 6 7 891011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
ParamUtil.java 37 import java.util.Iterator;
67 @Override public Iterator<ImmutableMethodParameter> iterator() {
68 return new Iterator<ImmutableMethodParameter>() {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
ValueTagTest.java 19 import java.util.Iterator;
40 Iterator<Object> iter = (Iterator<Object>) yaml.loadAll(input).iterator();
  /external/webrtc/webrtc/voice_engine/
channel_manager.h 76 // Upon construction of an Iterator it will grab a copy of the channel list of
78 // current one of the ChannelManager. As the Iterator holds its own references
81 class Iterator {
83 explicit Iterator(ChannelManager* channel_manager);
94 RTC_DISALLOW_COPY_AND_ASSIGN(Iterator);
  /frameworks/base/core/java/android/webkit/
UrlInterceptRegistry.java 23 import java.util.Iterator;
129 Iterator iter = getHandlers().listIterator();
157 Iterator iter = getHandlers().listIterator();
  /frameworks/base/drm/java/android/drm/
DrmInfo.java 22 import java.util.Iterator;
113 * Retrieves an iterator object that you can use to iterate over the keys associated with
116 * @return The iterator object.
118 public Iterator<String> keyIterator() {
119 return mAttributes.keySet().iterator();
123 * Retrieves an iterator object that you can use to iterate over the values associated with
126 * @return The iterator object.
128 public Iterator<Object> iterator() { method in class:DrmInfo
129 return mAttributes.values().iterator();
    [all...]
DrmInfoRequest.java 20 import java.util.Iterator;
118 * Retrieves an iterator object that you can use to iterate over the keys associated with
121 * @return The iterator object.
123 public Iterator<String> keyIterator() {
124 return mRequestInformation.keySet().iterator();
128 * Retrieves an iterator object that you can use to iterate over the values associated with
131 * @return The iterator object.
133 public Iterator<Object> iterator() { method in class:DrmInfoRequest
134 return mRequestInformation.values().iterator();
    [all...]
DrmSupportInfo.java 20 import java.util.Iterator;
68 * Retrieves an iterator object that you can use to iterate over the MIME types that
71 * @return The iterator object
73 public Iterator<String> getMimeTypeIterator() {
74 return mMimeTypeList.iterator();
78 * Retrieves an iterator object that you can use to iterate over the file suffixes that
81 * @return The iterator object.
83 public Iterator<String> getFileSuffixIterator() {
84 return mFileSuffixList.iterator();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 21 template <class C, class Iterator>
23 test(Iterator first, Iterator last)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
sfinae.hpp 63 template< typename Iterator >
64 yes_type is_pair_impl( const std::pair<Iterator,Iterator>* );
  /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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iter_fold_if.hpp 40 template< typename State, typename Iterator > struct apply
43 not_< is_same<Iterator,LastIterator> >
44 , apply1<Predicate,Iterator>
50 not_< is_same<Iterator,LastIterator> >
51 , apply1<Predicate,Iterator>
103 , typename result_::iterator
  /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 22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength,
35 // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
44 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength,
75 UCharsTrie::Iterator::~Iterator() {
79 UCharsTrie::Iterator &
80 UCharsTrie::Iterator::reset() {
96 UCharsTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty();
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChannelList.cpp 94 ChannelMap::iterator i = _map.find (name);
132 ChannelMap::iterator i = _map.find (name);
159 ChannelList::Iterator
173 ChannelList::Iterator
187 ChannelList::Iterator
201 ChannelList::Iterator
236 Iterator &first,
237 Iterator &last)
254 Iterator &first,
255 Iterator &last
    [all...]
  /external/v8/src/
hashmap.h 313 class Iterator {
315 Iterator& operator++() {
321 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }
324 Iterator(const TemplateHashMapImpl<AllocationPolicy>* map,
342 Iterator begin() const { return Iterator(this, this->Start()); }
343 Iterator end() const { return Iterator(this, NULL); }
344 Iterator find(Key* key, bool insert = false,
347 return Iterator(this, this->LookupOrInsert(key, key->Hash(), allocator))
    [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...]
  /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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 27 import java.util.Iterator;
171 Iterator<App> i = mApps.iterator();
189 Iterator<App> i = mApps.iterator();
219 Iterator<Connection> i = mConnections.iterator();
234 Iterator<App> i = mApps.iterator();
247 Iterator<App> i = mApps.iterator()
    [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/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/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...]

Completed in 319 milliseconds

1 2 3 4 5 6 7 891011>>