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

  /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...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 63 template <class InputIterator>
64 Path& assign(InputIterator begin, InputIterator end);
69 template <class InputIterator>
70 Path& append(InputIterator begin, InputIterator end);
138 template <class InputIterator>
139 Path& Path::assign(InputIterator begin, InputIterator end)
143 m_PathName.append<InputIterator>(begin, end)
    [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++/test/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 12 // template <class InputIterator> deque(InputIterator f, InputIterator l);
20 template <class InputIterator>
22 test(InputIterator f, InputIterator l)
24 typedef typename std::iterator_traits<InputIterator>::value_type T;
35 template <class Allocator, class InputIterator>
37 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);
21 template <class InputIterator, class Allocator>
23 test(InputIterator f, InputIterator l, const Allocator& a)
25 typedef typename std::iterator_traits<InputIterator>::value_type T;
  /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() {
lithium-allocator.h 177 class InputIterator BASE_EMBEDDED {
179 inline explicit InputIterator(LInstruction* instr);
200 InputIterator input_iterator_;
  /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/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 388 template<typename InputIterator>
390 InputIterator Iter;
396 typedef typename std::iterator_traits<InputIterator>::difference_type
398 typedef typename std::iterator_traits<InputIterator>::iterator_category
402 explicit CanTypeIterator(InputIterator Iter) : Iter(Iter) { }
734 template<typename InputIterator>
735 typename CanTypeIterator<InputIterator>::pointer
736 CanTypeIterator<InputIterator>::operator->() const {
  /external/clang/tools/libclang/
CursorVisitor.h 190 template<typename InputIterator>
191 bool visitPreprocessedEntities(InputIterator First, InputIterator Last,
CIndex.cpp 419 template<typename InputIterator>
420 bool CursorVisitor::visitPreprocessedEntities(InputIterator First,
421 InputIterator Last,
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h     [all...]
  /external/llvm/lib/Target/R600/
AMDILPeepholeOptimizer.cpp 144 template<class InputIterator, class SecondIterator, class Function>
145 Function safeNestedForEach(InputIterator First, InputIterator Last,
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h 511 template<typename InputIterator>
512 bool TransformTemplateArguments(InputIterator First,
513 InputIterator Last,
    [all...]
SemaLookup.cpp     [all...]

Completed in 1121 milliseconds