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

1 2

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
set_operations.h 44 template<typename InputIterator, typename OutputIterator>
46 copy_tail(std::pair<InputIterator, InputIterator> b,
47 std::pair<InputIterator, InputIterator> e, OutputIterator r)
65 template<typename InputIterator,
70 typedef std::iterator_traits<InputIterator> traits_type;
72 typedef typename std::pair<InputIterator, InputIterator> iterator_pair;
79 invoke(InputIterator a, InputIterator b
    [all...]
checkers.h 49 template<typename InputIterator, typename Comparator>
51 is_sorted(InputIterator begin, InputIterator end,
53 = std::less<typename std::iterator_traits<InputIterator>::
59 InputIterator current(begin), recent(begin);
87 template<typename InputIterator, typename Comparator>
89 is_sorted_failure(InputIterator begin, InputIterator end,
90 InputIterator& first_failure,
92 = std::less<typename std::iterator_traits<InputIterator>:
    [all...]
unique_copy.h 47 template<typename InputIterator,
51 parallel_unique_copy(InputIterator first, InputIterator last,
56 typedef std::iterator_traits<InputIterator> traits_type;
98 for (InputIterator iter = first + begin; iter < first + end; ++iter)
112 for (InputIterator iter = first + begin; iter < first + end; ++iter)
140 for (InputIterator iter = first + begin; iter < first + end; ++iter)
157 for (InputIterator iter = first + begin; iter < first + end; ++iter)
179 template<typename InputIterator, class OutputIterator>
181 parallel_unique_copy(InputIterator first, InputIterator last
    [all...]
list_partition.h 48 template<typename InputIterator>
50 shrink_and_double(std::vector<InputIterator>& os_starts,
68 template<typename InputIterator>
70 shrink(std::vector<InputIterator>& os_starts, size_t& count_to_two,
73 for (typename std::vector<InputIterator>::size_type i = 0;
98 template<typename InputIterator, typename FunctorType>
100 list_partition(const InputIterator begin, const InputIterator end,
101 InputIterator* starts, size_t* lengths, const int num_parts,
113 std::vector<InputIterator> os_starts(2 * oversampling * num_parts + 1)
    [all...]
partial_sum.h 54 template<typename InputIterator,
58 parallel_partial_sum_basecase(InputIterator begin, InputIterator end,
61 <InputIterator>::value_type value)
86 template<typename InputIterator,
90 parallel_partial_sum_linear(InputIterator begin, InputIterator end,
93 <InputIterator>::difference_type n)
95 typedef std::iterator_traits<InputIterator> traits_type;
192 template<typename InputIterator,
    [all...]
for_each.h 58 template<typename InputIterator, typename UserOp,
61 for_each_template_random_access(InputIterator begin, InputIterator end,
66 std::iterator_traits<InputIterator>::
algo.h 66 template<typename InputIterator, typename Function>
68 for_each(InputIterator begin, InputIterator end, Function f,
74 template<typename InputIterator, typename Function, typename IteratorTag>
76 for_each_switch(InputIterator begin, InputIterator end, Function f,
128 template<typename InputIterator, typename T>
129 inline InputIterator
130 find(InputIterator begin, InputIterator end, const T& val,
    [all...]
  /external/clang/test/Index/
complete-exprs.cpp 14 template<typename InputIterator>
15 vector(InputIterator first, InputIterator last);
61 // CHECK-CC1: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
75 // CHECK-CC3: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 12 // template <class InputIterator> deque(InputIterator f, InputIterator l);
21 template <class InputIterator>
23 test(InputIterator f, InputIterator l)
25 typedef typename std::iterator_traits<InputIterator>::value_type T;
36 template <class Allocator, class InputIterator>
38 test(InputIterator f, InputIterator l
    [all...]
iter_iter_alloc.pass.cpp 12 // template <class InputIterator>
13 // deque(InputIterator f, InputIterator l, const allocator_type& a);
22 template <class InputIterator, class Allocator>
24 test(InputIterator f, InputIterator l, const Allocator& a)
26 typedef typename std::iterator_traits<InputIterator>::value_type T;
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 60 template <class InputIterator>
61 Path& assign(InputIterator begin, InputIterator end);
66 template <class InputIterator>
67 Path& append(InputIterator begin, InputIterator end);
134 template <class InputIterator>
135 Path& Path::assign(InputIterator begin, InputIterator end)
139 m_PathName.append<InputIterator>(begin, end)
    [all...]
  /external/v8/src/
lithium-allocator-inl.h 89 InputIterator::InputIterator(LInstruction* instr)
97 bool InputIterator::Done() { return current_ >= limit_; }
100 LOperand* InputIterator::Current() {
106 void InputIterator::Advance() {
112 void InputIterator::SkipUninteresting() {
  /external/chromium_org/tools/gn/
ordered_set.h 49 template<class InputIterator>
50 void append(const InputIterator& insert_begin,
51 const InputIterator& insert_end) {
52 for (InputIterator i = insert_begin; i != insert_end; ++i) {
  /external/chromium_org/v8/src/
lithium-allocator-inl.h 89 InputIterator::InputIterator(LInstruction* instr)
97 bool InputIterator::Done() { return current_ >= limit_; }
100 LOperand* InputIterator::Current() {
107 void InputIterator::Advance() {
113 void InputIterator::SkipUninteresting() {
  /external/chromium_org/third_party/cld/base/
stl_decl_msvc.h 33 template <typename InputIterator, typename Size, typename OutputIterator>
34 std::pair<InputIterator, OutputIterator>
35 copy_n(InputIterator in, Size count, OutputIterator out) {
  /external/chromium_org/base/memory/
scoped_vector.h 92 template<typename InputIterator>
93 void assign(InputIterator begin, InputIterator end) {
108 template<typename InputIterator>
109 void insert(iterator position, InputIterator first, InputIterator last) {
  /external/eigen/Eigen/src/StlSupport/
StdDeque.h 43 template<typename InputIterator> \
44 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : deque_base(first, last, a) {} \
68 template<typename InputIterator> \
69 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
StdList.h 42 template<typename InputIterator> \
43 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
68 template<typename InputIterator> \
69 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
StdVector.h 35 template<typename InputIterator> \
36 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : vector_base(first, last, a) {} \
57 template<typename InputIterator> \
58 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
  /external/chromium_org/chrome/browser/download/
download_query.h 112 // second call to Sort(), and so on. For example, if the InputIterator passed
125 template <typename InputIterator>
126 void Search(InputIterator iter, const InputIterator last,
  /external/chromium/base/memory/
scoped_vector.h 66 template<typename InputIterator>
67 void insert(iterator position, InputIterator first, InputIterator last) {
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 24 template < typename TT > struct InputIterator {
25 typedef instantiate< & requirement_<void(*)(usage_requirements<InputIterator> x)>::failed> boost_concept_check1; // expected-note {{in instantiation}}
27 template < typename TT > struct ForwardIterator : InputIterator<TT> { // expected-note {{in instantiation}}
  /external/clang/include/clang/AST/
CanonicalType.h 385 template<typename InputIterator>
387 InputIterator Iter;
393 typedef typename std::iterator_traits<InputIterator>::difference_type
395 typedef typename std::iterator_traits<InputIterator>::iterator_category
399 explicit CanTypeIterator(InputIterator Iter) : Iter(Iter) { }
731 template<typename InputIterator>
732 typename CanTypeIterator<InputIterator>::pointer
733 CanTypeIterator<InputIterator>::operator->() const {
  /external/chromium_org/base/test/launcher/
test_results_tracker.cc 32 template<typename InputIterator>
33 void PrintTests(InputIterator first,
34 InputIterator last,
45 for (InputIterator i = first; i != last; ++i)
  /external/clang/tools/libclang/
CursorVisitor.h 190 template<typename InputIterator>
191 bool visitPreprocessedEntities(InputIterator First, InputIterator Last,

Completed in 641 milliseconds

1 2