Searched refs:__construct (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__expected/ |
H A D | expected.h | 427 _LIBCPP_HIDE_FROM_ABI constexpr void __construct(_Tag __tag, _Args&&... __args) { 606 this->__construct(_Tag{}, std::forward<_Args>(__args)...); 610 this->__construct(_Tag{}, std::move(__tmp)); 618 …auto __trans = std::__make_exception_guard([&] { this->__construct(_OtherTag{}, std::move(__tmp));… 619 this->__construct(_Tag{}, std::forward<_Args>(__args)...); 718 this->__construct(in_place, std::forward<_Args>(__args)...); 726 this->__construct(in_place, __il, std::forward<_Args>(__args)...); 743 …auto __trans = std::__make_exception_guard([&] { __with_err.__construct(unexpect, std::move(__tmp)… 744 __with_err.__construct(in_place, std::move(__with_val.__val())); 747 __with_val.__construct(unexpect, std::move(__tmp)); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | small_buffer.h | 82 _LIBCPP_HIDE_FROM_ABI void __construct(_Args&&... __args) { in __construct() function
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | optional | 361 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __construct(_Args&&... __args) { 362 _LIBCPP_ASSERT_INTERNAL(!has_value(), "__construct called for engaged __optional_storage"); 370 __construct(std::forward<_That>(__opt).__get()); 382 __construct(std::forward<_That>(__opt).__get()); 431 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __construct(_UArg&& __val) { 432 _LIBCPP_ASSERT_INTERNAL(!has_value(), "__construct called for engaged __optional_storage"); 442 __construct(std::forward<_That>(__opt).__get()); 454 __construct(std::forward<_That>(__opt).__get()); 737 this->__construct(std::forward<_Up>(__v)); 759 this->__construct(std::forward<_Args>(__args)...); [all …]
|
H A D | scoped_allocator | 421 …__construct(__uses_alloc_ctor<_Tp, inner_allocator_type&, _Args...>(), __p, std::forward<_Args>(__… 482 _LIBCPP_HIDE_FROM_ABI void __construct(integral_constant<int, 0>, _Tp* __p, _Args&&... __args) { 488 _LIBCPP_HIDE_FROM_ABI void __construct(integral_constant<int, 1>, _Tp* __p, _Args&&... __args) { 495 _LIBCPP_HIDE_FROM_ABI void __construct(integral_constant<int, 2>, _Tp* __p, _Args&&... __args) {
|