Lines Matching refs:__get
690 _Tp __get(size_t __index) const noexcept { return __storage_[__index]; };
707 _Tp __get(size_t __index) const noexcept { return (&__storage_)[__index]; };
809 _Tp __get(size_t __index) const noexcept { return __storage_[__index]; };
839 operator _Vp() const { return __ptr_->__get(__index_); }
847 return std::move(*this) = __ptr_->__get(__index_) + 1;
851 auto __val = __ptr_->__get(__index_);
857 return std::move(*this) = __ptr_->__get(__index_) - 1;
861 auto __val = __ptr_->__get(__index_);
867 return std::move(*this) = __ptr_->__get(__index_) + __value;
871 return std::move(*this) = __ptr_->__get(__index_) - __value;
875 return std::move(*this) = __ptr_->__get(__index_) * __value;
879 return std::move(*this) = __ptr_->__get(__index_) / __value;
883 return std::move(*this) = __ptr_->__get(__index_) % __value;
887 return std::move(*this) = __ptr_->__get(__index_) >> __value;
891 return std::move(*this) = __ptr_->__get(__index_) << __value;
895 return std::move(*this) = __ptr_->__get(__index_) & __value;
899 return std::move(*this) = __ptr_->__get(__index_) | __value;
903 return std::move(*this) = __ptr_->__get(__index_) ^ __value;
1462 value_type operator[](size_t __i) const { return __s_.__get(__i); }