Home
last modified time | relevance | path

Searched defs:forward_iterator (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/test/support/
Dtest_iterators.h115 template <class U> friend class forward_iterator; variable
125 TEST_CONSTEXPR_CXX14 forward_iterator() : it_() {} in forward_iterator() function
126 explicit TEST_CONSTEXPR_CXX14 forward_iterator(It it) : it_(it) {} in forward_iterator() function
128 TEST_CONSTEXPR_CXX14 forward_iterator(const forward_iterator<U>& u) :it_(u.it_) {} in forward_iterator() function
/external/llvm-project/libcxx/test/support/
Dtest_iterators.h114 template <class U> friend class forward_iterator; variable
124 TEST_CONSTEXPR_CXX14 forward_iterator() : it_() {} in forward_iterator() function
125 explicit TEST_CONSTEXPR_CXX14 forward_iterator(It it) : it_(it) {} in forward_iterator() function
127 TEST_CONSTEXPR_CXX14 forward_iterator(const forward_iterator<U>& u) :it_(u.it_) {} in forward_iterator() function
/external/llvm-project/pstl/test/support/
Dutils.h323 typedef ForwardIterator<iterator, std::forward_iterator_tag> forward_iterator; typedef