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

1 2 3 4

  /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)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 12 // template <class InputIterator> deque(InputIterator f, InputIterator l);
22 template <class InputIterator>
24 test(InputIterator f, InputIterator l)
26 typedef typename std::iterator_traits<InputIterator>::value_type T;
37 template <class Allocator, class InputIterator>
39 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);
23 template <class InputIterator, class Allocator>
25 test(InputIterator f, InputIterator l, const Allocator& a)
27 typedef typename std::iterator_traits<InputIterator>::value_type T;
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 57 template <class InputIterator>
58 Path& assign(InputIterator begin, InputIterator end);
63 template <class InputIterator>
64 Path& append(InputIterator begin, InputIterator end);
130 template <class InputIterator>
131 Path& Path::assign(InputIterator begin, InputIterator end) {
134 m_PathName.append<InputIterator>(begin, end)
    [all...]
  /external/v8/src/crankshaft/
lithium-inl.h 61 InputIterator::InputIterator(LInstruction* instr)
67 bool InputIterator::Done() { return current_ >= limit_; }
70 LOperand* InputIterator::Current() {
77 void InputIterator::Advance() {
83 void InputIterator::SkipUninteresting() {
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 12 // template <class InputIterator> deque(InputIterator f, InputIterator l);
26 template <class InputIterator>
28 test(InputIterator f, InputIterator l)
30 typedef typename std::iterator_traits<InputIterator>::value_type T;
41 template <class Allocator, class InputIterator>
43 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);
27 template <class InputIterator, class Allocator>
29 test(InputIterator f, InputIterator l, const Allocator& a)
31 typedef typename std::iterator_traits<InputIterator>::value_type T;
  /external/ImageMagick/Magick++/lib/Magick++/
STL.h     [all...]
  /external/eigen/Eigen/src/StlSupport/
StdDeque.h 35 template<typename InputIterator> \
36 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : deque_base(first, last, a) {} \
60 template<typename InputIterator> \
61 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
StdList.h 34 template<typename InputIterator> \
35 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
60 template<typename InputIterator> \
61 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) {} \
60 template<typename InputIterator> \
61 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
  /frameworks/rs/
rsList.h 37 template <class InputIterator>
38 List(InputIterator first, InputIterator last) : List() {
39 for (InputIterator it = first; it != last; ++it) {
  /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/libcxx/test/support/
nasty_containers.hpp 41 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {}
47 template <class InputIterator>
48 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); }
107 template <class InputIterator>
108 iterator insert(const_iterator pos, InputIterator first, InputIterator last)
229 template <class InputIterator>
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
nasty_containers.hpp 41 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {}
47 template <class InputIterator>
48 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); }
107 template <class InputIterator>
108 iterator insert(const_iterator pos, InputIterator first, InputIterator last)
229 template <class InputIterator>
    [all...]
  /external/libchrome/base/memory/
scoped_vector.h 97 template<typename InputIterator>
98 void assign(InputIterator begin, InputIterator end) {
121 template<typename InputIterator>
122 void insert(iterator position, InputIterator first, InputIterator last) {
  /external/webrtc/webrtc/system_wrappers/include/
scoped_vector.h 113 template<typename InputIterator>
114 void assign(InputIterator begin, InputIterator end) {
129 template<typename InputIterator>
130 void insert(iterator position, InputIterator first, InputIterator last) {
  /external/googletest/googlemock/include/gmock/
gmock-more-actions.h 97 template<typename InputIterator, typename OutputIterator>
98 inline OutputIterator CopyElements(InputIterator first,
99 InputIterator last,
  /external/libbrillo/brillo/strings/
string_utils.h 69 template <class InputIterator>
71 InputIterator first,
72 InputIterator last) {
  /external/v8/testing/gmock/include/gmock/
gmock-more-actions.h 97 template<typename InputIterator, typename OutputIterator>
98 inline OutputIterator CopyElements(InputIterator first,
99 InputIterator last,
  /art/libartbase/base/
dchecked_vector.h 68 template <typename InputIterator>
69 dchecked_vector(InputIterator first,
70 InputIterator last,
158 template <typename InputIterator>
159 iterator insert(const_iterator position, InputIterator first, InputIterator last) {
  /external/clang/include/clang/AST/
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/v8/src/compiler/
state-values-utils.h 111 SparseInputMask::InputIterator* Top();
116 SparseInputMask::InputIterator stack_[kMaxInlineDepth];
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
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 {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
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 {

Completed in 376 milliseconds

1 2 3 4