Lines Matching refs:__r
1650 int __r = __ct.narrow(__c, 0) - '0';
1656 return __r;
1657 __r = __r * 10 + __ct.narrow(__c, 0) - '0';
1661 return __r;
1680 virtual const string_type& __r() const;
2374 virtual const string_type& __r() const {return this->__r_;}
3665 codecvt_base::result __r = codecvt_base::ok;
3675 __r = __cvtptr_->in(__st, __frm, __frm_end, __frm_nxt,
3680 __r = codecvt_base::error;
3682 else if (__r == codecvt_base::noconv)
3688 __r = codecvt_base::ok;
3690 else if (__r == codecvt_base::ok)
3695 else if (__r == codecvt_base::partial)
3703 } while (__r == codecvt_base::partial && __frm_nxt < __frm_end);
3705 if (__r == codecvt_base::ok)
3726 codecvt_base::result __r = codecvt_base::ok;
3736 __r = __cvtptr_->out(__st, __frm, __frm_end, __frm_nxt,
3741 __r = codecvt_base::error;
3743 else if (__r == codecvt_base::noconv)
3749 __r = codecvt_base::ok;
3751 else if (__r == codecvt_base::ok)
3756 else if (__r == codecvt_base::partial)
3764 } while (__r == codecvt_base::partial && __frm_nxt < __frm_end);
3766 if (__r == codecvt_base::ok)
3775 __r = __cvtptr_->unshift(__st, __to, __to_end, __to_nxt);
3776 if (__r == codecvt_base::noconv)
3779 __r = codecvt_base::ok;
3781 else if (__r == codecvt_base::ok)
3785 else if (__r == codecvt_base::partial)
3792 } while (__r == codecvt_base::partial);
3793 if (__r == codecvt_base::ok)
3845 streambuf* __r = __bufptr_;
3847 return __r;
3938 codecvt_base::result __r;
3946 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_,
3949 if (__r == codecvt_base::noconv)
4018 codecvt_base::result __r;
4022 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e,
4026 if (__r == codecvt_base::noconv)
4032 else if (__r == codecvt_base::ok || __r == codecvt_base::partial)
4037 if (__r == codecvt_base::partial)
4045 } while (__r == codecvt_base::partial);
4116 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om);
4117 __r.state(__st_);
4118 return __r;
4143 codecvt_base::result __r;
4147 __r = __cv_->unshift(__st_, __extbuf_, __extbuf_ + __ebs_, __extbe);
4151 } while (__r == codecvt_base::partial);
4152 if (__r == codecvt_base::error)
4173 codecvt_base::result __r;
4178 __r = __cv_->out(__st_, __e, this->egptr(), __e,
4180 switch (__r)
4192 } while (__r == codecvt_base::partial);