Lines Matching refs:__get
692 _Tp __get(size_t __index) const noexcept { return __storage_[__index]; };
709 _Tp __get(size_t __index) const noexcept { return (&__storage_)[__index]; };
811 _Tp __get(size_t __index) const noexcept { return __storage_[__index]; };
841 operator _Vp() const { return __ptr_->__get(__index_); }
849 return std::move(*this) = __ptr_->__get(__index_) + 1;
853 auto __val = __ptr_->__get(__index_);
859 return std::move(*this) = __ptr_->__get(__index_) - 1;
863 auto __val = __ptr_->__get(__index_);
869 return std::move(*this) = __ptr_->__get(__index_) + __value;
873 return std::move(*this) = __ptr_->__get(__index_) - __value;
877 return std::move(*this) = __ptr_->__get(__index_) * __value;
881 return std::move(*this) = __ptr_->__get(__index_) / __value;
885 return std::move(*this) = __ptr_->__get(__index_) % __value;
889 return std::move(*this) = __ptr_->__get(__index_) >> __value;
893 return std::move(*this) = __ptr_->__get(__index_) << __value;
897 return std::move(*this) = __ptr_->__get(__index_) & __value;
901 return std::move(*this) = __ptr_->__get(__index_) | __value;
905 return std::move(*this) = __ptr_->__get(__index_) ^ __value;
1464 value_type operator[](size_t __i) const { return __s_.__get(__i); }