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

12 3 4 5 6 7 8 91011>>

  /external/libchrome/base/containers/
adapters.h 10 #include <iterator>
22 using Iterator = decltype(static_cast<T*>(nullptr)->rbegin());
29 Iterator begin() const { return t_.rbegin(); }
30 Iterator end() const { return t_.rend(); }
41 using Iterator = std::reverse_iterator<T*>;
46 Iterator begin() const { return Iterator(&t_[N]); }
47 Iterator end() const { return Iterator(&t_[0]); }
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContent.java 3 import java.util.Iterator;
31 * @return - the content iterator. Returns an empty iterator if no content list present.
33 public Iterator<Content> getContents();
  /external/nist-sip/java/javax/sip/header/
Parameters.java 4 import java.util.Iterator;
10 Iterator getParameterNames();
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
EmptyRuleSet.java 28 import java.util.Iterator;
35 public Iterator<ConversionRule> iterator() { method in class:EmptyRuleSet
36 return list.iterator();
  /frameworks/av/include/drm/
DrmConstraints.h 68 * Iterator for key
91 * Iterator for constraints
93 class Iterator {
96 explicit Iterator(DrmConstraints* drmConstraints)
100 Iterator(const Iterator& iterator);
101 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmInfo.h 52 * Iterator for key
76 * Iterator
78 class Iterator {
82 explicit Iterator(const DrmInfo* drmInfo)
86 Iterator(const Iterator& iterator);
87 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmInfoRequest.h 66 * Iterator for key
90 * Iterator
92 class Iterator {
96 explicit Iterator(const DrmInfoRequest* drmInfoRequest)
100 Iterator(const Iterator& iterator);
101 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmMetadata.h 33 * Iterator for key
55 * Iterator for constraints
57 class Iterator {
60 explicit Iterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
63 Iterator(const Iterator& iterator);
64 Iterator& operator=(const Iterator& iterator);
    [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/spi/
CharsetProvider.java 29 import java.util.Iterator;
88 * Creates an iterator that iterates over the charsets supported by this
93 * @return The new iterator
95 public abstract Iterator<Charset> charsets();
  /libcore/ojluni/src/main/java/java/nio/file/
DirectoryStream.java 28 import java.util.Iterator;
39 * Iterator}; invoking the {@link #iterator iterator} method to obtain a second
40 * or subsequent iterator throws {@code IllegalStateException}. </b>
42 * <p> An important property of the directory stream's {@code Iterator} is that
43 * its {@link Iterator#hasNext() hasNext} method is guaranteed to read-ahead by
47 * because the stream has been {@link #close closed}. The {@code Iterator} does
48 * not support the {@link Iterator#remove remove} operation.
65 * using the {@code Iterator}, behaves as if the end of stream has been reached
158 Iterator<T> iterator(); method in interface:DirectoryStream
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
PolicyNode.java 28 import java.util.Iterator;
77 * Returns an iterator over the children of this node. Any attempts to
79 * {@code Iterator}'s remove method must throw an
82 * @return an iterator over the children of this node
84 Iterator<? extends PolicyNode> getChildren();
  /external/libchrome/sandbox/linux/bpf_dsl/
syscall_set.cc 47 SyscallSet::Iterator SyscallSet::begin() const {
48 return Iterator(set_, false);
51 SyscallSet::Iterator SyscallSet::end() const {
52 return Iterator(set_, true);
68 SyscallSet::Iterator::Iterator(Set set, bool done)
76 uint32_t SyscallSet::Iterator::operator*() const {
81 SyscallSet::Iterator& SyscallSet::Iterator::operator++() {
94 uint32_t SyscallSet::Iterator::NextSyscall() const
    [all...]
  /frameworks/av/drm/common/
DrmInfo.cpp 64 DrmInfo::Iterator DrmInfo::iterator() const { function in class:DrmInfo
65 return Iterator(this);
90 // Iterator implementation
91 DrmInfo::Iterator::Iterator(const DrmInfo::Iterator& iterator)
92 : mDrmInfo(iterator.mDrmInfo), mIndex(iterator.mIndex)
    [all...]
DrmInfoRequest.cpp 57 DrmInfoRequest::Iterator DrmInfoRequest::iterator() const { function in class:DrmInfoRequest
58 return Iterator(this);
85 // Iterator implementation
86 DrmInfoRequest::Iterator::Iterator(const DrmInfoRequest::Iterator& iterator) :
87 mDrmInfoRequest(iterator.mDrmInfoRequest), mIndex(iterator.mIndex)
    [all...]
  /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.11-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-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...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/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/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/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/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/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...]

Completed in 1922 milliseconds

12 3 4 5 6 7 8 91011>>