Home
last modified time | relevance | path

Searched refs:destroy_n (Results 1 – 10 of 10) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
Ddestroy_n.pass.cpp48 Array* p = std::destroy_n(pool, 5); in test_arrays()
49 ASSERT_SAME_TYPE(decltype(std::destroy_n(pool, 5)), Array*); in test_arrays()
72 Array* p = std::destroy_n(pool, 5); in test_arrays()
73 ASSERT_SAME_TYPE(decltype(std::destroy_n(pool, 5)), Array*); in test_arrays()
95 It it = std::destroy_n(It(pool), 5); in test()
96 ASSERT_SAME_TYPE(decltype(std::destroy_n(It(pool), 5)), It); in test()
Dranges_destroy_n.pass.cpp31 LIBCPP_STATIC_ASSERT(std::is_class_v<decltype(std::ranges::destroy_n)>);
36 static_assert(!std::is_invocable_v<decltype(std::ranges::destroy_n), NotNothrowDtrable*, int>);
62 std::ranges::destroy_n(Iterator(out), N); in test()
96 std::ranges::destroy_n(buffer, N); in test_arrays()
124 std::ranges::destroy_n(buffer, N); in test_arrays()
/external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
Ddestroy_n.pass.cpp42 Counted* np = std::destroy_n(p, 1); in main()
46 It it = std::destroy_n(It(p), 4); in main()
/external/cronet/buildtools/third_party/libc++/trunk/include/__memory/
Dranges_construct_at.h109 return _VSTD::destroy_n(_VSTD::move(__first), __n); in operator()
116 inline constexpr auto destroy_n = __destroy_n::__fn{};
Dconstruct_at.h120 _ForwardIterator destroy_n(_ForwardIterator __first, _Size __n) { in destroy_n() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/library/description/conventions/customization.point.object/
Dniebloid.compile.pass.cpp156 static_assert(test(std::ranges::destroy_n, a, 10));
/external/cronet/buildtools/third_party/libc++/trunk/include/
Dmemory283 ForwardIterator destroy_n(ForwardIterator first, Size n); // constexpr in C++20
288 …constexpr InputIterator destroy_n(InputIterator first, iter_difference_t<InputIterator> n) noexcep…
/external/cronet/buildtools/third_party/libc++/trunk/docs/Status/
DCxx2bIssues.csv210 …uninitialized_copy_n``, ``ranges::uninitialized_move_n``, and ``ranges::destroy_n`` should use ``s…
DCxx20Issues.csv234 "`3303 <https://wg21.link/LWG3303>`__","Bad ""``constexpr``\ "" marker for ``destroy/destroy_n``\ "…
/external/libcxx/include/
Dmemory195 ForwardIterator destroy_n(ForwardIterator first, Size n);
3339 _ForwardIterator destroy_n(_ForwardIterator __first, _Size __n) {