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/cronet/buildtools/third_party/libc++/trunk/test/support/
Dtest_iterators.h117 template <class U> friend class forward_iterator; variable
125 TEST_CONSTEXPR forward_iterator() : it_() {} in forward_iterator() function
126 TEST_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} in forward_iterator() function
129 TEST_CONSTEXPR forward_iterator(const forward_iterator<U>& u) : it_(u.it_) {} in forward_iterator() function
132 …TEST_CONSTEXPR_CXX14 forward_iterator(forward_iterator<U>&& other) : it_(other.it_) { other.it_ = … in forward_iterator() function
/external/cronet/buildtools/third_party/libc++/trunk/include/__iterator/
Dconcepts.h155 concept forward_iterator = variable