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

1 23 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
reverse_iterator.hpp 11 #include <boost/iterator.hpp>
12 #include <boost/iterator/iterator_adaptor.hpp>
20 template <class Iterator>
22 : public iterator_adaptor< reverse_iterator<Iterator>, Iterator >
24 typedef iterator_adaptor< reverse_iterator<Iterator>, Iterator > super_t;
31 explicit reverse_iterator(Iterator x)
37 , typename enable_if_convertible<OtherIterator, Iterator>::type* = 0
  /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/current/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...]
  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 11 import java.util.Iterator;
28 Iterator /* IItem */ getChildren ();
34 Iterator /* IItem */ getChildren (ItemComparator /* IItem */ order);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
IteratorTester.java 22 import java.util.Iterator;
25 * A utility for testing an Iterator implementation by comparing its behavior to
28 * {@link Iterator#next}, {@link Iterator#hasNext} and {@link Iterator#remove}
52 * impossible to test an Iterator without changing its state, so the tester
55 * <p>If your iterator supports modification through {@code remove()}, you may
65 AbstractIteratorTester<E, Iterator<E>> {
70 * @param features the features supported by the iterator
80 protected final Iterable<Stimulus<E, Iterator<E>>> getStimulusValues()
    [all...]
MinimalIterable.java 23 import java.util.Iterator;
27 * invocations of the {@link #iterator()} method after the first, and whose
28 * iterator is always unmodifiable.
35 * <li>returning the same iterator again
38 * implementations have, of returning a new, independent iterator
42 * invoke the {@code iterator} method only once, and should be tested using this
56 * Returns an iterable whose iterator returns the given elements in order.
59 // Make sure to get an unmodifiable iterator
60 return new MinimalIterable<E>(Arrays.asList(elements).iterator());
64 * Returns an iterable whose iterator returns the given elements in order
73 private Iterator<E> iterator; field in class:MinimalIterable
80 public Iterator<E> iterator() { method in class:MinimalIterable
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
FixedSizeSet.java 36 import java.util.Iterator;
45 public Iterator<T> iterator() { method in class:FixedSizeSet
46 return new Iterator<T>() {
  /external/v8/src/base/
adapters.h 20 typedef decltype(static_cast<T*>(nullptr)->rbegin()) Iterator;
25 Iterator begin() const { return t_.rbegin(); }
26 Iterator end() const { return t_.rend(); }
  /packages/apps/Launcher3/src/com/android/launcher3/util/
LongArrayMap.java 21 import java.util.Iterator;
42 public Iterator<E> iterator() { method in class:LongArrayMap
46 @Thunk class ValueIterator implements Iterator<E> {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestDataModule.java 10 import java.util.Iterator;
36 * @return Iterator<TestData>
38 public Iterator getTestDataIterator();
74 * @return Iterator<DataMap>
76 public Iterator getSettingsIterator();
78 * @return Iterator<DataMap>
80 public Iterator getDataIterator();
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestDataModule.java 9 import java.util.Iterator;
35 * @return Iterator<TestData>
37 public Iterator getTestDataIterator();
73 * @return Iterator<DataMap>
75 public Iterator getSettingsIterator();
77 * @return Iterator<DataMap>
79 public Iterator getDataIterator();
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
advance_fwd.hpp 24 template< typename Iterator, typename N > struct advance;
advance.hpp 36 template< typename Iterator, typename N > struct apply
47 typedef typename apply_wrap1<f_,Iterator>::type type;
53 typename BOOST_MPL_AUX_NA_PARAM(Iterator)
57 : advance_impl< typename tag<Iterator>::type >
58 ::template apply<Iterator,N>
63 typename Iterator
67 : advance_impl< typename tag<Iterator>::type >
68 ::template apply<Iterator,long_<N> >
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
iter_fold_if_impl.hpp 45 template< typename Iterator, typename State >
49 typedef Iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_null_step
56 typename Iterator
63 typedef typename apply2<StateOp,State,Iterator>::type state;
64 typedef typename IteratorOp::type iterator; typedef in struct:boost::mpl::aux::iter_fold_if_step_impl::result_
72 typename Iterator
80 typedef Iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_step_impl::result_
88 typename Iterator
101 typedef typename impl_::iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_forward_step
118 typedef typename impl_::iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_backward_step
198 typedef typename AUX_LAST_BACKWARD_STEP::iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_impl
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_if_impl.hpp 15 template< typename Iterator, typename State >
19 typedef Iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_null_step
26 typename Iterator
33 typedef typename apply2< StateOp,State,Iterator >::type state;
34 typedef typename IteratorOp::type iterator; typedef in struct:boost::mpl::aux::iter_fold_if_step_impl::result_
42 typename Iterator
50 typedef Iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_step_impl::result_
55 typename Iterator
68 typedef typename impl_::iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_forward_step
85 typedef typename impl_::iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_backward_step
130 typedef typename backward_step4::iterator iterator; typedef in struct:boost::mpl::aux::iter_fold_if_impl
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
concepts.hpp 20 #include <boost/iterator/iterator_concepts.hpp>
23 #include <boost/range/iterator.hpp>
35 * concepts related to iterator traversal categories. For example, the
53 * \see http://www.boost.org/libs/iterator/doc/iterator_concepts.html
54 * for details about iterator concepts.
97 // Rationale for the inclusion of redefined iterator concept
105 // are not correct models of the standard iterator concepts,
110 // with the Boost.Iterator concepts would render the library
112 template<class Iterator>
113 struct IncrementableIteratorConcept : CopyConstructible<Iterator>
257 typedef BOOST_DEDUCED_TYPENAME range_iterator<T>::type iterator; typedef in struct:boost::SinglePassRangeConcept
308 typedef BOOST_DEDUCED_TYPENAME range_iterator<Range>::type iterator; typedef in struct:boost::WriteableRangeConcept
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
TableModel.java 21 import java.util.Iterator;
30 public abstract Iterator<RectF> getIterator(RectF tableRect, int totalElements);
  /external/apache-harmony/security/src/test/api/java.injected/java/security/cert/
myCertPath.java 44 public Iterator getEncodings() {
45 return (Iterator) (new StringTokenizer("ss ss ss ss"));
  /external/hamcrest/src/org/hamcrest/internal/
ArrayIterator.java 4 import java.util.Iterator;
6 public class ArrayIterator implements Iterator<Object> {
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
Marker.java 28 import java.util.Iterator;
93 * Returns an Iterator which can be used to iterate over the references of this
94 * marker. An empty iterator is returned when this marker has no references.
96 * @return Iterator over the references of this marker
98 public Iterator<Marker> iterator(); method in interface:Marker
  /external/testng/src/test/java/test/dataprovider/
MyIterator.java 3 import java.util.Iterator;
5 public class MyIterator implements Iterator<Object[]> {
  /libcore/ojluni/src/main/java/java/lang/
Iterable.java 27 import java.util.Iterator;
40 * @param <T> the type of elements returned by the iterator
47 * Returns an iterator over elements of type {@code T}.
49 * @return an Iterator.
51 Iterator<T> iterator(); method in interface:Iterable
86 * spliterator from the iterable's {@code Iterator}. The spliterator
87 * inherits the <em>fail-fast</em> properties of the iterable's iterator.
101 return Spliterators.spliteratorUnknownSize(iterator(), 0);

Completed in 1067 milliseconds

1 23 4 5 6 7 8 91011>>