Lines Matching refs:__value_
301 _Hp __value_;
315 …_ABI constexpr __tuple_leaf() noexcept(is_nothrow_default_constructible<_Hp>::value) : __value_() {
320 …_LIBCPP_HIDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 0>, const _Alloc&) : __value_(…
326 : __value_(allocator_arg_t(), __a) {
331 …IDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a) : __value_(__a) {
340 : __value_(std::forward<_Tp>(__t)) {
348 : __value_(std::forward<_Tp>(__t)) {
356 : __value_(allocator_arg_t(), __a, std::forward<_Tp>(__t)) {
363 : __value_(std::forward<_Tp>(__t), __a) {
382 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Hp& get() _NOEXCEPT { return __value_; }
383 …P_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const _Hp& get() const _NOEXCEPT { return __value_; }