Lines Matching refs:__base
460 using __base = __expected_base<_Tp, _Err>;
478 : __base(in_place) {}
491 : __base(__other.__has_val(), __other.__union()) {}
502 : __base(__other.__has_val(), std::move(__other.__union())) {}
529 : __base(__tag, std::forward<_Func>(__f), std::forward<_Args>(__args)...) {}
534 : __base(__tag, std::forward<_Func>(__f), std::forward<_Args>(__args)...) {}
544 : __base(__other.__has_val(), __other.__union()) {}
551 : __base(__other.__has_val(), std::move(__other.__union())) {}
559 : __base(in_place, std::forward<_Up>(__u)) {}
565 : __base(unexpect, __unex.error()) {}
571 : __base(unexpect, std::move(__unex.error())) {}
577 : __base(in_place, std::forward<_Args>(__args)...) {}
583 : __base(in_place, __il, std::forward<_Args>(__args)...) {}
589 : __base(unexpect, std::forward<_Args>(__args)...) {}
595 : __base(unexpect, __il, std::forward<_Args>(__args)...) {}
1373 using __base = __expected_void_base<_Err>;
1384 _LIBCPP_HIDE_FROM_ABI constexpr expected() noexcept : __base(in_place) {}
1395 : __base(__rhs.__has_val(), __rhs.__union()) {}
1403 : __base(__rhs.__has_val(), std::move(__rhs.__union())) {}
1410 : __base(__rhs.__has_val(), __rhs.__union()) {}
1416 : __base(__rhs.__has_val(), std::move(__rhs.__union())) {}
1422 : __base(unexpect, __unex.error()) {}
1428 : __base(unexpect, std::move(__unex.error())) {}
1430 _LIBCPP_HIDE_FROM_ABI constexpr explicit expected(in_place_t) noexcept : __base(in_place) {}
1436 : __base(unexpect, std::forward<_Args>(__args)...) {}
1442 : __base(unexpect, __il, std::forward<_Args>(__args)...) {}
1448 : __base(__tag, std::forward<_Func>(__f), std::forward<_Args>(__args)...) {}