Home
last modified time | relevance | path

Searched refs:reverse_copy (Results 1 – 24 of 24) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse_copy.pass.cpp26 auto it = std::reverse_copy(std::begin(ia), std::end(ia), std::begin(ib)); in test_constexpr()
41 OutIter r = std::reverse_copy(InIter(ia), InIter(ia), OutIter(ja)); in test()
44 r = std::reverse_copy(InIter(ia), InIter(ia+sa), OutIter(ja)); in test()
50 r = std::reverse_copy(InIter(ib), InIter(ib+sb), OutIter(jb)); in test()
58 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc)); in test()
67 r = std::reverse_copy(InIter(id), InIter(id+sd), OutIter(jd)); in test()
H A Dranges.reverse_copy.pass.cpp32 concept HasReverseCopyIt = requires(Iter first, Sent last, Out out) { std::ranges::reverse_copy(fir…
35 concept HasReverseCopyR = requires(Range range, Out out) { std::ranges::reverse_copy(range, out); };
59 std::ranges::reverse_copy(Iter(value.data()), in test()
70 std::ranges::reverse_copy(range, OutIter(out.data())); in test()
121 std::ranges::reverse_copy(a, a + 4, b); in test()
128 std::ranges::reverse_copy(a, b); in test()
/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dreverse_copy.h23 reverse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __resul… in reverse_copy() function
H A Dranges_reverse_copy.h59 inline constexpr auto reverse_copy = __reverse_copy::__fn{};
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse_copy.pass.cpp86 Iterator1 actual_return = reverse_copy(exec, data_b, data_e, actual_b); in operator ()()
/llvm-project-15.0.7/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp53 std::reverse_copy(N->Name.begin(), N->Name.end(), std::back_inserter(S)); in fullName()
204 std::reverse_copy(C.Name.begin(), C.Name.end(), in compareNode()
/llvm-project-15.0.7/libcxx/test/std/algorithms/
H A Dranges_robust_against_proxy_iterators.pass.cpp135 test(std::ranges::reverse_copy, in, out); in run_tests()
H A Drobust_against_adl.compile.pass.cpp179 (void)std::reverse_copy(first, last, first2); in all_the_algorithms()
H A Dranges_robust_against_dangling.pass.cpp160 dangling_1st<reverse_copy_result<dangling, int*>>(std::ranges::reverse_copy, in, out); in test_all()
H A Drobust_re_difference_type.compile.pass.cpp214 (void)std::reverse_copy(first, last, first2); in all_the_algorithms()
H A Drobust_against_proxy_iterators_lifetime_bugs.pass.cpp719 test(simple_in, [&](I b, I e) { std::reverse_copy(b, e, out); }); in test()
/llvm-project-15.0.7/libcxx/test/libcxx/algorithms/
H A Drobust_against_cpp20_hostile_iterators.compile.pass.cpp183 (void) std::reverse_copy(it, it, it); in test()
/llvm-project-15.0.7/libcxx/test/std/library/description/conventions/customization.point.object/
H A Dniebloid.compile.pass.cpp129 static_assert(test(std::ranges::reverse_copy, a, a));
/llvm-project-15.0.7/libcxx/docs/Status/
H A DRangesAlgorithms.csv57 Write,reverse_copy,Nikolas Klauser,`D127211 <https://llvm.org/D127211>`_,✅
H A DCxx14Issues.csv24 "`2074 <https://wg21.link/lwg2074>`__","Off by one error in std::reverse_copy","Portland","|Complet…
/llvm-project-15.0.7/pstl/include/pstl/internal/
H A Dglue_algorithm_defs.h257 reverse_copy(_ExecutionPolicy&& __exec, _BidirectionalIterator __first, _BidirectionalIterator __la…
H A Dglue_algorithm_impl.h524 reverse_copy(_ExecutionPolicy&& __exec, _BidirectionalIterator __first, _BidirectionalIterator __la… in reverse_copy() function
H A Dalgorithm_impl.h1537 return std::reverse_copy(__first, __last, __d_first); in __brick_reverse_copy()
/llvm-project-15.0.7/libcxx/include/
H A DCMakeLists.txt166 __algorithm/reverse_copy.h
H A Dalgorithm746 …ranges::reverse_copy(I first, S last, O result); // s…
751 …ranges::reverse_copy(R&& r, O result); // s…
1334 reverse_copy(BidirectionalIterator first, BidirectionalIterator last, OutputIterator result);
1877 #include <__algorithm/reverse_copy.h>
H A Dmodule.modulemap.in411 module reverse_copy { private header "__algorithm/reverse_copy.h" }
/llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn229 "__algorithm/reverse_copy.h",
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp951 std::reverse_copy(Options.Version, Options.Version + 4, Tmp); in emitProfileNotes()
/llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc990 SYMBOL(reverse_copy, std::, <algorithm>)