HomeSort by relevance Sort by last modified time
    Searched defs:random_access_iterator (Results 1 - 2 of 2) sorted by null

  /external/libcxx/test/support/
test_iterators.h 214 class random_access_iterator class
218 template <class U> friend class random_access_iterator;
228 TEST_CONSTEXPR_CXX14 random_access_iterator() : it_() {} function in class:random_access_iterator
229 explicit TEST_CONSTEXPR_CXX14 random_access_iterator(It it) : it_(it) {} function in class:random_access_iterator
231 TEST_CONSTEXPR_CXX14 random_access_iterator(const random_access_iterator<U>& u) :it_(u.it_) {} function in class:random_access_iterator
236 TEST_CONSTEXPR_CXX14 random_access_iterator& operator++() {++it_; return *this;}
237 TEST_CONSTEXPR_CXX14 random_access_iterator operator++(int)
238 {random_access_iterator tmp(*this); ++(*this); return tmp;}
240 TEST_CONSTEXPR_CXX14 random_access_iterator& operator--() {--it_; return *this;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
test_iterators.h 214 class random_access_iterator class
218 template <class U> friend class random_access_iterator;
228 TEST_CONSTEXPR_CXX14 random_access_iterator() : it_() {} function in class:random_access_iterator
229 explicit TEST_CONSTEXPR_CXX14 random_access_iterator(It it) : it_(it) {} function in class:random_access_iterator
231 TEST_CONSTEXPR_CXX14 random_access_iterator(const random_access_iterator<U>& u) :it_(u.it_) {} function in class:random_access_iterator
236 TEST_CONSTEXPR_CXX14 random_access_iterator& operator++() {++it_; return *this;}
237 TEST_CONSTEXPR_CXX14 random_access_iterator operator++(int)
238 {random_access_iterator tmp(*this); ++(*this); return tmp;}
240 TEST_CONSTEXPR_CXX14 random_access_iterator& operator--() {--it_; return *this;
    [all...]

Completed in 77 milliseconds