/external/ImageMagick/Magick++/lib/Magick++/ |
D | STL.h | 1847 template<class InputIterator, class Container> 1848 void channelMaskImages(InputIterator first_,InputIterator last_, in channelMaskImages() 1855 for (InputIterator iter = first_; iter != last_; ++iter) in channelMaskImages() 1896 template<class InputIterator> 1897 bool linkImages(InputIterator first_,InputIterator last_) in linkImages() 1908 for (InputIterator iter = first_; iter != last_; ++iter) in linkImages() 1930 template<class InputIterator, class Container> 1931 void restoreChannelMaskImages(InputIterator first_,InputIterator last_, in restoreChannelMaskImages() 1938 for (InputIterator iter = first_; iter != last_; ++iter) in restoreChannelMaskImages() 1950 template<class InputIterator> [all …]
|
/external/libcxx/test/std/containers/sequences/deque/deque.cons/ |
D | iter_iter.pass.cpp | 22 template <class InputIterator> 24 test(InputIterator f, InputIterator l) in test() 26 typedef typename std::iterator_traits<InputIterator>::value_type T; in test() 37 template <class Allocator, class InputIterator> 39 test(InputIterator f, InputIterator l) in test() 41 typedef typename std::iterator_traits<InputIterator>::value_type T; in test()
|
D | iter_iter_alloc.pass.cpp | 23 template <class InputIterator, class Allocator> 25 test(InputIterator f, InputIterator l, const Allocator& a) in test() 27 typedef typename std::iterator_traits<InputIterator>::value_type T; in test()
|
/external/libcxx/include/ |
D | numeric | 20 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); 37 template <class InputIterator, class OutputIterator> 39 partial_sum(InputIterator first, InputIterator last, OutputIterator result); 41 template <class InputIterator, class OutputIterator, class BinaryOperation> 43 …partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary… 45 template <class InputIterator, class OutputIterator> 47 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result); [all …]
|
D | set | 52 template <class InputIterator> 53 set(InputIterator first, InputIterator last, 55 template <class InputIterator> 56 set(InputIterator first, InputIterator last, const value_compare& comp, 69 template <class InputIterator> 70 set(InputIterator first, InputIterator last, const allocator_type& a) 114 template <class InputIterator> 115 void insert(InputIterator first, InputIterator last); 234 template <class InputIterator> 235 multiset(InputIterator first, InputIterator last, [all …]
|
D | unordered_set | 54 template <class InputIterator> 55 unordered_set(InputIterator f, InputIterator l, 73 template <class InputIterator> 74 … unordered_set(InputIterator f, InputIterator l, size_type n, const allocator_type& a); // C++14 75 template <class InputIterator> 76 unordered_set(InputIterator f, InputIterator l, size_type n, 112 template <class InputIterator> 113 void insert(InputIterator first, InputIterator last); 202 template <class InputIterator> 203 unordered_multiset(InputIterator f, InputIterator l, [all …]
|
D | algorithm | 22 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 T> 39 InputIterator [all …]
|
D | queue | 122 template <class InputIterator> 123 priority_queue(InputIterator first, InputIterator last, 125 template <class InputIterator> 126 priority_queue(InputIterator first, InputIterator last, 128 template <class InputIterator> 129 priority_queue(InputIterator first, InputIterator last,
|
D | map | 64 template <class InputIterator> 65 map(InputIterator first, InputIterator last, 67 template <class InputIterator> 68 map(InputIterator first, InputIterator last, 80 template <class InputIterator> 81 map(InputIterator first, InputIterator last, const allocator_type& a) 136 template <class InputIterator> 137 void insert(InputIterator first, InputIterator last); 283 template <class InputIterator> 284 multimap(InputIterator first, InputIterator last, const key_compare& comp); [all …]
|
/external/v8/src/crankshaft/ |
D | lithium-inl.h | 61 InputIterator::InputIterator(LInstruction* instr) in InputIterator() function 67 bool InputIterator::Done() { return current_ >= limit_; } in Done() 70 LOperand* InputIterator::Current() { in Current() 77 void InputIterator::Advance() { in Advance() 83 void InputIterator::SkipUninteresting() { in SkipUninteresting()
|
/external/eigen/Eigen/src/StlSupport/ |
D | StdList.h | 34 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()) \
|
D | StdDeque.h | 35 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()) \
|
D | StdVector.h | 35 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/ |
D | nasty_containers.hpp | 41 …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() 111 template <class InputIterator> 112 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert() 237 template <class InputIterator> 238 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert()
|
/external/clang/test/Index/ |
D | complete-exprs.cpp | 14 template<typename InputIterator> 15 vector(InputIterator first, InputIterator last);
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | scoped_vector.h | 113 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/libchrome/base/memory/ |
D | scoped_vector.h | 96 template<typename InputIterator> 97 void assign(InputIterator begin, InputIterator end) { in assign() 116 template<typename InputIterator> 117 void insert(iterator position, InputIterator first, InputIterator last) { in insert()
|
/external/clang/test/SemaTemplate/ |
D | instantiate-function-params.cpp | 24 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/clang/include/clang/AST/ |
D | CanonicalType.h | 384 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/libbrillo/brillo/strings/ |
D | string_utils.h | 69 template <class InputIterator> 71 InputIterator first, in JoinRange() 72 InputIterator last) { in JoinRange()
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 97 template<typename InputIterator, typename OutputIterator> 98 inline OutputIterator CopyElements(InputIterator first, in CopyElements() 99 InputIterator last, in CopyElements()
|
/external/v8/testing/gmock/include/gmock/ |
D | gmock-more-actions.h | 97 template<typename InputIterator, typename OutputIterator> 98 inline OutputIterator CopyElements(InputIterator first, in CopyElements() 99 InputIterator last, in CopyElements()
|
/external/libcxx/include/ext/ |
D | hash_set | 45 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);
|
/external/clang/tools/libclang/ |
D | CursorVisitor.h | 190 template<typename InputIterator> 191 bool visitPreprocessedEntities(InputIterator First, InputIterator Last,
|
/external/v8/src/compiler/ |
D | schedule.h | 103 template <class InputIterator> in NON_EXPORTED_BASE() 104 void InsertNodes(iterator insertion_point, InputIterator insertion_start, in NON_EXPORTED_BASE() 105 InputIterator insertion_end) { in NON_EXPORTED_BASE()
|