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/ |
D | destroy_n.pass.cpp | 48 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()
|
D | ranges_destroy_n.pass.cpp | 31 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/ |
D | destroy_n.pass.cpp | 42 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/ |
D | ranges_construct_at.h | 109 return _VSTD::destroy_n(_VSTD::move(__first), __n); in operator() 116 inline constexpr auto destroy_n = __destroy_n::__fn{};
|
D | construct_at.h | 120 _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/ |
D | niebloid.compile.pass.cpp | 156 static_assert(test(std::ranges::destroy_n, a, 10));
|
/external/cronet/buildtools/third_party/libc++/trunk/include/ |
D | memory | 283 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/ |
D | Cxx2bIssues.csv | 210 …uninitialized_copy_n``, ``ranges::uninitialized_move_n``, and ``ranges::destroy_n`` should use ``s…
|
D | Cxx20Issues.csv | 234 "`3303 <https://wg21.link/LWG3303>`__","Bad ""``constexpr``\ "" marker for ``destroy/destroy_n``\ "…
|
/external/libcxx/include/ |
D | memory | 195 ForwardIterator destroy_n(ForwardIterator first, Size n); 3339 _ForwardIterator destroy_n(_ForwardIterator __first, _Size __n) {
|