Home
last modified time | relevance | path

Searched refs:InputIterator (Results 1 – 25 of 62) sorted by relevance

123

/external/libcxx/include/
Dnumeric20 template <class InputIterator, class T>
22 accumulate(InputIterator first, InputIterator last, T init);
24 template <class InputIterator, class T, class BinaryOperation>
26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op);
28 template<class InputIterator>
29 typename iterator_traits<InputIterator>::value_type
30 reduce(InputIterator first, InputIterator last); // C++17
32 template<class InputIterator, class T>
34 reduce(InputIterator first, InputIterator last, T init); // C++17
36 template<class InputIterator, class T, class BinaryOperation>
[all …]
Dqueue128 template <class InputIterator>
129 priority_queue(InputIterator first, InputIterator last,
131 template <class InputIterator>
132 priority_queue(InputIterator first, InputIterator last,
134 template <class InputIterator>
135 priority_queue(InputIterator first, InputIterator last,
170 template<class InputIterator,
171 class Compare = less<typename iterator_traits<InputIterator>::value_type>,
172 class Container = vector<typename iterator_traits<InputIterator>::value_type>>
173 priority_queue(InputIterator, InputIterator, Compare = Compare(), Container = Container())
[all …]
Dset54 template <class InputIterator>
55 set(InputIterator first, InputIterator last,
57 template <class InputIterator>
58 set(InputIterator first, InputIterator last, const value_compare& comp,
71 template <class InputIterator>
72 set(InputIterator first, InputIterator last, const allocator_type& a)
116 template <class InputIterator>
117 void insert(InputIterator first, InputIterator last);
254 template <class InputIterator>
255 multiset(InputIterator first, InputIterator last,
[all …]
Dalgorithm22 template <class InputIterator, class Predicate>
24 all_of(InputIterator first, InputIterator last, Predicate pred);
26 template <class InputIterator, class Predicate>
28 any_of(InputIterator first, InputIterator last, Predicate pred);
30 template <class InputIterator, class Predicate>
32 none_of(InputIterator first, InputIterator last, Predicate pred);
34 template <class InputIterator, class Function>
36 for_each(InputIterator first, InputIterator last, Function f);
38 template<class InputIterator, class Size, class Function>
39 constexpr InputIterator // constexpr in C++20
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DSTL.h1851 template<class InputIterator, class Container>
1852 void channelMaskImages(InputIterator first_,InputIterator last_, in channelMaskImages()
1859 for (InputIterator iter = first_; iter != last_; ++iter) in channelMaskImages()
1900 template<class InputIterator>
1901 bool linkImages(InputIterator first_,InputIterator last_) in linkImages()
1912 for (InputIterator iter = first_; iter != last_; ++iter) in linkImages()
1934 template<class InputIterator, class Container>
1935 void restoreChannelMaskImages(InputIterator first_,InputIterator last_, in restoreChannelMaskImages()
1942 for (InputIterator iter = first_; iter != last_; ++iter) in restoreChannelMaskImages()
1954 template<class InputIterator>
[all …]
/external/libcxx/test/std/containers/sequences/deque/deque.cons/
Diter_iter.pass.cpp26 template <class InputIterator>
28 test(InputIterator f, InputIterator l) in test()
30 typedef typename std::iterator_traits<InputIterator>::value_type T; in test()
41 template <class Allocator, class InputIterator>
43 test(InputIterator f, InputIterator l) in test()
45 typedef typename std::iterator_traits<InputIterator>::value_type T; in test()
Diter_iter_alloc.pass.cpp27 template <class InputIterator, class Allocator>
29 test(InputIterator f, InputIterator l, const Allocator& a) in test()
31 typedef typename std::iterator_traits<InputIterator>::value_type T; in test()
/external/eigen/Eigen/src/StlSupport/
DStdList.h34 template<typename InputIterator> \
35 …list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_b…
60 template<typename InputIterator> \
61 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
DStdDeque.h35 template<typename InputIterator> \
36 …deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : deque…
60 template<typename InputIterator> \
61 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
DStdVector.h35 template<typename InputIterator> \
36 …vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : vect…
60 template<typename InputIterator> \
61 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
/external/libcxx/test/support/
Dnasty_containers.hpp41 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector()
47 template <class InputIterator>
48 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } in assign()
107 template <class InputIterator>
108 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert()
229 template <class InputIterator>
230 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert()
/external/catch2/include/internal/
Dcatch_matchers_vector.h20 template <typename InputIterator, typename T>
21 size_t count(InputIterator first, InputIterator last, T const& item) { in count()
30 template <typename InputIterator, typename T>
31 bool contains(InputIterator first, InputIterator last, T const& item) { in contains()
/external/webrtc/webrtc/system_wrappers/include/
Dscoped_vector.h113 template<typename InputIterator>
114 void assign(InputIterator begin, InputIterator end) { in assign()
129 template<typename InputIterator>
130 void insert(iterator position, InputIterator first, InputIterator last) { in insert()
/external/clang/test/Index/
Dcomplete-exprs.cpp14 template<typename InputIterator>
15 vector(InputIterator first, InputIterator last);
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
Dctor_sseq_all_zero.pass.cpp38 template <typename InputIterator>
39 all_zero_seed_seq(InputIterator, InputIterator) {} in all_zero_seed_seq()
/external/googletest/googlemock/include/gmock/
Dgmock-more-actions.h52 template<typename InputIterator, typename OutputIterator>
53 inline OutputIterator CopyElements(InputIterator first, in CopyElements()
54 InputIterator last, in CopyElements()
/external/libchrome/base/containers/
Dflat_map.h182 template <class InputIterator>
183 flat_map(InputIterator first,
184 InputIterator last,
248 template <class InputIterator>
249 flat_map<Key, Mapped, Compare>::flat_map(InputIterator first, in flat_map()
250 InputIterator last, in flat_map()
Dcircular_deque.h427 template <class InputIterator>
428 circular_deque(InputIterator first, InputIterator last) { in circular_deque()
493 template <typename InputIterator>
494 typename std::enable_if<::base::internal::is_iterator<InputIterator>::value,
496 assign(InputIterator first, InputIterator last) { in assign()
709 template <class InputIterator>
710 typename std::enable_if<::base::internal::is_iterator<InputIterator>::value,
712 insert(const_iterator pos, InputIterator first, InputIterator last) { in insert()
Dflat_tree.h136 template <class InputIterator>
137 flat_tree(InputIterator first,
138 InputIterator last,
227 template <class InputIterator>
228 void insert(InputIterator first,
229 InputIterator last,
508 template <class InputIterator>
510 InputIterator first,
511 InputIterator last,
714 template <class InputIterator>
[all …]
/external/clang/include/clang/AST/
DCanonicalType.h384 template <typename InputIterator>
387 CanTypeIterator<InputIterator>, InputIterator,
388 typename std::iterator_traits<InputIterator>::iterator_category,
390 typename std::iterator_traits<InputIterator>::difference_type,
393 explicit CanTypeIterator(InputIterator Iter)
660 template <typename InputIterator>
661 CanProxy<Type> CanTypeIterator<InputIterator>::operator->() const {
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DIteratorTest.cpp196 TEST(FilterIteratorTest, InputIterator) { in TEST() argument
197 struct InputIterator in TEST() struct
198 : iterator_adaptor_base<InputIterator, int *, std::input_iterator_tag> { in TEST()
200 iterator_adaptor_base<InputIterator, int *, std::input_iterator_tag>; in TEST()
202 InputIterator(int *It) : BaseT(It) {} in TEST() argument
208 make_range(InputIterator(std::begin(A)), InputIterator(std::end(A))), in TEST()
/external/clang/test/SemaTemplate/
Dinstantiate-function-params.cpp24 template < typename TT > struct InputIterator { struct
25 …typedef instantiate< & requirement_<void(*)(usage_requirements<InputIterator> x)>::failed> boost_… argument
27 template < typename TT > struct ForwardIterator : InputIterator<TT> …
/external/libbrillo/brillo/strings/
Dstring_utils.h69 template <class InputIterator>
71 InputIterator first, in JoinRange()
72 InputIterator last) { in JoinRange()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-more-actions.h97 template<typename InputIterator, typename OutputIterator>
98 inline OutputIterator CopyElements(InputIterator first, in CopyElements()
99 InputIterator last, in CopyElements()
/external/libcxx/include/ext/
Dhash_set45 template <class InputIterator>
46 hash_set(InputIterator f, InputIterator l,
66 template <class InputIterator>
67 void insert(InputIterator first, InputIterator last);
131 template <class InputIterator>
132 hash_multiset(InputIterator f, InputIterator l,
152 template <class InputIterator>
153 void insert(InputIterator first, InputIterator last);

123