Lines Matching refs:__construct
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)...);
768 this->__construct(__il, std::forward<_Args>(__args)...);
780 __opt.__construct(std::move(this->__get()));
783 this->__construct(std::move(__opt.__get()));