HomeSort by relevance Sort by last modified time
    Searched refs:Iterator (Results 1 - 25 of 2767) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPIterator.java 12 import java.util.Iterator;
27 * appear in the dump and is never visited by an iterator (that is, it is never
68 public interface XMPIterator extends Iterator
  /frameworks/base/core/java/android/content/
EntityIterator.java 19 import java.util.Iterator;
22 * A specialization of {@link Iterator} that allows iterating over a collection of
24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
25 * method to indicate that the iterator is no longer needed and that its resources
28 public interface EntityIterator extends Iterator<Entity> {
30 * Reset the iterator back to the beginning.
35 * Indicates that this iterator is no longer needed and that any associated resources
  /external/apache-http/src/org/apache/http/
HeaderElementIterator.java 34 import java.util.Iterator;
37 * A type-safe iterator for {@link HeaderElement HeaderElement} objects.
46 public interface HeaderElementIterator extends Iterator {
HeaderIterator.java 35 import java.util.Iterator;
39 * A type-safe iterator for {@link Header Header} objects.
48 public interface HeaderIterator extends Iterator {
TokenIterator.java 35 import java.util.Iterator;
39 * An iterator for {@link String} tokens.
51 public interface TokenIterator extends Iterator {
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
RuleSet.java 27 import java.util.Iterator;
31 Iterator<ConversionRule> iterator(); method in interface:RuleSet
  /external/parameter-framework/asio-1.10.6/include/asio/
connect.hpp 41 * @param begin An iterator pointing to the start of a sequence of endpoints.
43 * @returns On success, an iterator denoting the successfully connected
44 * endpoint. Otherwise, the end iterator.
51 * Iterator represents the end of the sequence. This is a valid assumption for
52 * iterator types such as @c asio::ip::tcp::resolver::iterator.
60 template <typename Protocol, typename SocketService, typename Iterator>
61 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin);
73 * @param begin An iterator pointing to the start of a sequence of endpoints
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
syscall_set.h 10 #include <iterator>
18 // iterator is aware of how system calls look like and will skip quickly
32 class Iterator;
37 Iterator begin() const;
38 Iterator end() const;
70 // Iterator provides C++ input iterator semantics for traversing a
72 class SyscallSet::Iterator
73 : public std::iterator<std::input_iterator_tag, uint32_t> {
75 Iterator(const Iterator& it
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_traits.hpp 8 # include <boost/detail/iterator.hpp>
27 template <class Iterator>
30 typedef typename boost::detail::iterator_traits<Iterator>::value_type type;
33 template <class Iterator>
36 typedef typename boost::detail::iterator_traits<Iterator>::reference type;
40 template <class Iterator>
43 typedef typename boost::detail::iterator_traits<Iterator>::pointer type;
46 template <class Iterator>
49 typedef typename boost::detail::iterator_traits<Iterator>::difference_type type;
52 template <class Iterator>
    [all...]
iterator_concepts.hpp 10 #include <boost/iterator/iterator_categories.hpp>
13 #include <boost/detail/iterator.hpp>
40 // Iterator Access Concepts
42 BOOST_concept(ReadableIterator,(Iterator))
43 : boost::Assignable<Iterator>
44 , boost::CopyConstructible<Iterator>
47 typedef BOOST_DEDUCED_TYPENAME boost::detail::iterator_traits<Iterator>::value_type value_type;
48 typedef BOOST_DEDUCED_TYPENAME boost::detail::iterator_traits<Iterator>::reference reference;
57 Iterator i;
61 typename Iterator
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/impl/
connect.hpp 32 template <typename Iterator>
33 Iterator operator()(const asio::error_code&, Iterator next)
40 template <typename Protocol, typename SocketService, typename Iterator>
41 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin)
44 Iterator result = connect(s, begin, ec);
49 template <typename Protocol, typename SocketService, typename Iterator>
50 inline Iterator connect(basic_socket<Protocol, SocketService>& s,
51 Iterator begin, asio::error_code& ec
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Iterable.java 3 import java.util.Iterator;
12 * Returns an iterator over a set of elements of type T.
14 * @return an Iterator.
16 Iterator<T> iterator(); method in interface:Iterable
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestIteratorGenerator.java 21 import java.util.Iterator;
26 * @param <E> the element type of the iterator.
32 Iterator<E> get();
  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 22 import java.util.Iterator;
197 * <p>An Iterator over String elements is returned in an arbitrary, <strong>implementation dependent</strong>, order.</p>
199 * <p><strong>The <code>Iterator</code> is
224 * <td><code>Iterator</code> over prefixes bound to Namespace URI in
230 * <td>empty <code>Iterator</code></td>
235 * <td><code>Iterator</code> with one element set to
241 * <td><code>Iterator</code> with one element set to
252 * @return <code>Iterator</code> for all prefixes bound to the
255 Iterator getPrefixes(String namespaceURI);
  /frameworks/base/include/androidfw/
AttributeFinder.h 56 template <typename Derived, typename Iterator>
59 BackTrackingAttributeFinder(const Iterator& begin, const Iterator& end);
61 Iterator find(uint32_t attr);
68 Iterator mBegin;
69 Iterator mEnd;
70 Iterator mCurrent;
71 Iterator mLargest;
76 Iterator mFrameworkStart;
77 Iterator mAppStart
    [all...]
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 3 import java.util.Iterator;
7 public class SelfDescribingValueIterator<T> implements Iterator<SelfDescribing> {
8 private Iterator<T> values;
10 public SelfDescribingValueIterator(Iterator<T> values) {
  /external/libcxx/test/std/experimental/algorithms/alg.search/
search.pass.cpp 27 template <typename Iterator>
28 Iterator operator() ( Iterator b, Iterator /*e*/) const
  /external/testng/src/main/java/org/testng/internal/
ParameterHolder.java 3 import java.util.Iterator;
21 public Iterator<Object[]> parameters;
24 public ParameterHolder(Iterator<Object[]> parameters, ParameterOrigin origin, DataProviderHolder dph) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
advance_backward.hpp 18 template< typename Iterator > struct apply
20 typedef Iterator iter0;
28 template< typename Iterator > struct apply
30 typedef Iterator iter0;
39 template< typename Iterator > struct apply
41 typedef Iterator iter0;
51 template< typename Iterator > struct apply
53 typedef Iterator iter0;
64 template< typename Iterator > struct apply
66 typedef Iterator iter0
    [all...]
advance_forward.hpp 18 template< typename Iterator > struct apply
20 typedef Iterator iter0;
28 template< typename Iterator > struct apply
30 typedef Iterator iter0;
39 template< typename Iterator > struct apply
41 typedef Iterator iter0;
51 template< typename Iterator > struct apply
53 typedef Iterator iter0;
64 template< typename Iterator > struct apply
66 typedef Iterator iter0
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChannelList.h 154 // Iterator-style access to existing channels
159 class Iterator;
162 Iterator begin ();
165 Iterator end ();
168 Iterator find (const char name[]);
171 Iterator find (const std::string &name);
218 Iterator &first,
219 Iterator &last);
239 Iterator &first,
240 Iterator &last)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
iterator.hpp 37 // that of iterators derived from std::iterator but not
38 // boost::iterator and which redefine difference_type.
54 # include <iterator>
61 // of std::iterator<output_iterator_tag,void,void,void,void> which has no
80 template <class Iterator>
82 : std::iterator_traits<Iterator>
100 template <class Iterator>
103 typedef typename Iterator::value_type value_type;
104 typedef typename Iterator::reference reference;
105 typedef typename Iterator::pointer pointer
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingIterator.java 21 import java.util.Iterator;
24 * An iterator which forwards all its method calls to another iterator.
26 * backing iterator as desired per the <a
34 extends ForwardingObject implements Iterator<T> {
39 @Override protected abstract Iterator<T> delegate();
TransformedIterator.java 23 import java.util.Iterator;
26 * An iterator that transforms a backing iterator; for internal use. This avoids
32 abstract class TransformedIterator<F, T> implements Iterator<T> {
33 final Iterator<? extends F> backingIterator;
35 TransformedIterator(Iterator<? extends F> backingIterator) {
  /external/testng/src/test/java/test/dataprovider/
FailingIterableDataProvider.java 6 import java.util.Iterator;
11 public Iterator<Object[]> createData() {
12 return new Iterator<Object[]>() {

Completed in 2977 milliseconds

1 2 3 4 5 6 7 8 91011>>