Home
last modified time | relevance | path

Searched refs:RACI (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
Dmove.pass.cpp52 typedef random_access_iterator<CI> RACI; in testN() typedef
63 assert(std::move(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end()); in testN()
65 assert(std::move(RACI(c2.cbegin()), RACI(c2.cend()), c1.begin()) == c1.end()); in testN()
Dmove_backward.pass.cpp52 typedef random_access_iterator<CI> RACI; in testN() typedef
63 assert(std::move_backward(RACI(c1.cbegin()), RACI(c1.cend()), c2.end()) == c2.begin()); in testN()
65 assert(std::move_backward(RACI(c2.cbegin()), RACI(c2.cend()), c1.end()) == c1.begin()); in testN()
Dcopy_backward.pass.cpp52 typedef random_access_iterator<CI> RACI; in testN() typedef
63 assert(std::copy_backward(RACI(c1.cbegin()), RACI(c1.cend()), c2.end()) == c2.begin()); in testN()
65 assert(std::copy_backward(RACI(c2.cbegin()), RACI(c2.cend()), c1.end()) == c1.begin()); in testN()
Dcopy.pass.cpp52 typedef random_access_iterator<CI> RACI; in testN() typedef
64 assert(std::copy(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end()); in testN()