• Home
  • Raw
  • Download

Lines Matching refs:__r

1708     int __r = __ct.narrow(__c, 0) - '0';
1714 return __r;
1715 __r = __r * 10 + __ct.narrow(__c, 0) - '0';
1719 return __r;
1738 virtual const string_type& __r() const;
1750 template <> _LIBCPP_FUNC_VIS const string& __time_get_c_storage<char>::__r() const;
1758 template <> _LIBCPP_FUNC_VIS const wstring& __time_get_c_storage<wchar_t>::__r() const;
2465 virtual const string_type& __r() const {return this->__r_;}
3756 codecvt_base::result __r = codecvt_base::ok;
3766 __r = __cvtptr_->in(__st, __frm, __frm_end, __frm_nxt,
3771 __r = codecvt_base::error;
3773 else if (__r == codecvt_base::noconv)
3779 __r = codecvt_base::ok;
3781 else if (__r == codecvt_base::ok)
3786 else if (__r == codecvt_base::partial)
3794 } while (__r == codecvt_base::partial && __frm_nxt < __frm_end);
3796 if (__r == codecvt_base::ok)
3817 codecvt_base::result __r = codecvt_base::ok;
3827 __r = __cvtptr_->out(__st, __frm, __frm_end, __frm_nxt,
3832 __r = codecvt_base::error;
3834 else if (__r == codecvt_base::noconv)
3840 __r = codecvt_base::ok;
3842 else if (__r == codecvt_base::ok)
3847 else if (__r == codecvt_base::partial)
3855 } while (__r == codecvt_base::partial && __frm_nxt < __frm_end);
3857 if (__r == codecvt_base::ok)
3866 __r = __cvtptr_->unshift(__st, __to, __to_end, __to_nxt);
3867 if (__r == codecvt_base::noconv)
3870 __r = codecvt_base::ok;
3872 else if (__r == codecvt_base::ok)
3876 else if (__r == codecvt_base::partial)
3883 } while (__r == codecvt_base::partial);
3884 if (__r == codecvt_base::ok)
3936 streambuf* __r = __bufptr_;
3938 return __r;
4029 codecvt_base::result __r;
4037 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_,
4040 if (__r == codecvt_base::noconv)
4110 codecvt_base::result __r;
4114 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e,
4118 if (__r == codecvt_base::noconv)
4124 else if (__r == codecvt_base::ok || __r == codecvt_base::partial)
4129 if (__r == codecvt_base::partial)
4137 } while (__r == codecvt_base::partial);
4208 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om);
4209 __r.state(__st_);
4210 return __r;
4235 codecvt_base::result __r;
4239 __r = __cv_->unshift(__st_, __extbuf_, __extbuf_ + __ebs_, __extbe);
4243 } while (__r == codecvt_base::partial);
4244 if (__r == codecvt_base::error)
4265 codecvt_base::result __r;
4270 __r = __cv_->out(__st_, __e, this->egptr(), __e,
4272 switch (__r)
4284 } while (__r == codecvt_base::partial);