Searched defs:RACI (Results 1 - 4 of 4) sorted by last modified time

/external/libcxx/test/containers/sequences/deque/deque.special/
H A Dcopy.pass.cpp52 typedef random_access_iterator<CI> RACI; typedef
64 assert(std::copy(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end());
H A Dcopy_backward.pass.cpp52 typedef random_access_iterator<CI> RACI; typedef
63 assert(std::copy_backward(RACI(c1.cbegin()), RACI(c1.cend()), c2.end()) == c2.begin());
65 assert(std::copy_backward(RACI(c2.cbegin()), RACI(c2.cend()), c1.end()) == c1.begin());
H A Dmove.pass.cpp52 typedef random_access_iterator<CI> RACI; typedef
63 assert(std::move(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end());
65 assert(std::move(RACI(c2.cbegin()), RACI(c2.cend()), c1.begin()) == c1.end());
H A Dmove_backward.pass.cpp52 typedef random_access_iterator<CI> RACI; typedef
63 assert(std::move_backward(RACI(c1.cbegin()), RACI(c1.cend()), c2.end()) == c2.begin());
65 assert(std::move_backward(RACI(c2.cbegin()), RACI(c2.cend()), c1.end()) == c1.begin());

Completed in 259 milliseconds