Home
last modified time | relevance | path

Searched refs:move_backward (Results 1 – 25 of 65) sorted by relevance

123

/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/alg.modifying.operations/alg.move/
Dranges.move_backward.pass.cpp34 concept HasMoveBackwardIt = requires(In in, Sent sent, Out out) { std::ranges::move_backward(in, se…
47 concept HasMoveBackwardR = requires(Range range, Out out) { std::ranges::move_backward(range, out);…
66 …std::ranges::move_backward(In(in.data()), Sent(In(in.data() + in.size())), Out(out.data() + out.si… in test()
75 std::ranges::move_backward(range, Out(out.data() + out.size())); in test()
96 std::ranges::move_backward(In(in.begin()), Sent(In(in.end())), Out(out.end())); in test_containers()
105 …std::same_as<std::ranges::in_out_result<In, Out>> auto ret = std::ranges::move_backward(range, Out… in test_containers()
194 std::ranges::move_backward(a, std::end(b)); in test()
202 std::ranges::move_backward(std::begin(a), std::end(a), std::end(b)); in test()
215 std::ranges::move_backward(proxyA, std::ranges::next(proxyB.begin(), std::end(proxyB))); in test()
225 …std::ranges::move_backward(std::begin(proxyA), std::end(proxyA), std::ranges::next(proxyB.begin()… in test()
[all …]
Dcontiguous_trivial_optimization.pass.cpp53 std::move_backward(ia, ia+4, ib+4); in test_trivial_moveassign_but_no_trivial_copyassign()
76 std::move_backward(ia, ia+4, ib+4); in test_trivial_copyassign_but_no_trivial_moveassign()
Dmove_backward.pass.cpp33 OutIter r = std::move_backward(InIter(ia), InIter(ia+N), OutIter(ib+N)); in test()
52 OutIter r = std::move_backward(InIter(ia), InIter(ia+N), OutIter(ib+N)); in test1()
/external/libcxx/test/std/containers/sequences/deque/deque.special/
Dmove_backward.pass.cpp55 assert(std::move_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin()); in testN()
57 assert(std::move_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin()); in testN()
59 assert(std::move_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin())); in testN()
61 assert(std::move_backward(c2.cbegin(), c2.cend(), RAI(c1.end())) == RAI(c1.begin())); in testN()
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()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/sequences/deque/deque.special/
Dmove_backward.pass.cpp55 assert(std::move_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin()); in testN()
57 assert(std::move_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin()); in testN()
59 assert(std::move_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin())); in testN()
61 assert(std::move_backward(c2.cbegin(), c2.cend(), RAI(c1.end())) == RAI(c1.begin())); in testN()
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()
/external/cronet/buildtools/third_party/libc++/trunk/benchmarks/
Ddeque_iterator.bench.cpp138 std::move_backward(std::forward<Args>(args)...); in operator ()()
140 } move_backward; variable
206 …r_move_backward(benchmark::State& state) { benchmark_deque_vector_backward(state, move_backward); } in BM_deque_vector_move_backward()
210 benchmark_deque_vector_backward(state, std::ranges::move_backward); in BM_deque_vector_ranges_move_backward()
214 …ue_move_backward(benchmark::State& state) { benchmark_deque_deque_backward(state, move_backward); } in BM_deque_deque_move_backward()
218 benchmark_deque_deque_backward(state, std::ranges::move_backward); in BM_deque_deque_ranges_move_backward()
222 …e_move_backward(benchmark::State& state) { benchmark_vector_deque_backward(state, move_backward); } in BM_vector_deque_move_backward()
226 benchmark_vector_deque_backward(state, std::ranges::move_backward); in BM_vector_deque_ranges_move_backward()
/external/cronet/buildtools/third_party/libc++/trunk/include/__algorithm/
Dshift_right.h43 return _VSTD::move_backward(__first, __m, __last); in shift_right()
52 return _VSTD::move_backward(__first, __m, __last); in shift_right()
Dranges_move_backward.h65 inline constexpr auto move_backward = __move_backward::__fn{};
Dmove_backward.h131 move_backward(_BidirectionalIterator1 __first, _BidirectionalIterator1 __last, _BidirectionalIterat… in move_backward() function
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/
Dmove_backward.pass.cpp34 OutIter r = std::move_backward(InIter(ia), InIter(ia+N), OutIter(ib+N)); in test()
51 OutIter r = std::move_backward(InIter(ia), InIter(ia+N), OutIter(ib+N)); in test1()
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/algorithms/alg.modifying.operations/
Dcopy_move_trivial.pass.cpp201 std::move_backward(first, last, out + n); in test_copy_and_move()
219 std::ranges::move_backward(first, last, out + n); in test_copy_and_move()
297 std::move_backward(first, last, out + n); in test_different_signedness()
314 std::ranges::move_backward(first, last, out + n); in test_different_signedness()
Dcopy_move_unwrap_reverse.pass.cpp80 std::move_backward(first, last, out + n); in test_copy_and_move()
98 std::ranges::move_backward(first, last, out + n); in test_copy_and_move()
Dcopy_move_nontrivial.pass.cpp244 std::move_backward(first, last, out + n); in test_move()
253 std::ranges::move_backward(first, last, out + n); in test_move()
/external/cronet/buildtools/third_party/libc++/trunk/test/support/
Dtest_constexpr_container.h45 std::move_backward(data_ + i, data_ + size_, data_ + size_ + 1); in insert()
/external/libcxx/include/
Ddeque257 move_backward(_RAIter __f,
265 move_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
272 move_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
526 move_backward(_RAIter __f,
535 move_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
543 move_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
818 // move_backward
823 move_backward(_RAIter __f,
843 _VSTD::move_backward(__m, __l, __re);
853 move_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
[all …]
D__split_buffer476 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
507 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h481 std::move_backward(I, this->end()-1, this->end()); in insert()
510 std::move_backward(I, this->end()-1, this->end()); in insert()
551 std::move_backward(I, OldEnd-NumToInsert, OldEnd); in insert()
605 std::move_backward(I, OldEnd-NumToInsert, OldEnd); in insert()
/external/llvm/include/llvm/ADT/
DSmallVector.h478 std::move_backward(I, this->end()-1, this->end()); in insert()
507 std::move_backward(I, this->end()-1, this->end()); in insert()
548 std::move_backward(I, OldEnd-NumToInsert, OldEnd); in insert()
602 std::move_backward(I, OldEnd-NumToInsert, OldEnd); in insert()
/external/pigweed/pw_containers/public/pw_containers/
Dvector.h503 std::move_backward(insertion_point, end(), end() + 1); in insert()
531 std::move_backward(insertion_point, end(), end() + insertion_count); in insert()
559 std::move_backward(insertion_point, end(), end() + count); in insert()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallVector.h484 std::move_backward(I, this->end()-1, this->end()); in insert()
513 std::move_backward(I, this->end()-1, this->end()); in insert()
554 std::move_backward(I, OldEnd-NumToInsert, OldEnd); in insert()
611 std::move_backward(I, OldEnd-NumToInsert, OldEnd); in insert()
/external/cronet/buildtools/third_party/libc++/trunk/include/
D__split_buffer15 #include <__algorithm/move_backward.h>
508 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
538 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/
Dranges_robust_against_proxy_iterators.pass.cpp115 test(std::ranges::move_backward, in, out_end); in run_tests()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Diterator.h331 std::move_backward(container_->begin() + pos, container_->begin() + origsz, in InsertBefore()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Diterator.h331 std::move_backward(container_->begin() + pos, container_->begin() + origsz, in InsertBefore()
/external/deqp-deps/SPIRV-Tools/source/opt/
Diterator.h331 std::move_backward(container_->begin() + pos, container_->begin() + origsz, in InsertBefore()

123