Lines Matching refs:__r
133 codecvt_base::result __r;
137 __r = __cv_->in(*__st_, __extbuf, __extbuf + __nread, __enxt,
139 switch (__r)
161 } while (__r == _VSTD::codecvt_base::partial);
276 codecvt_base::result __r;
283 __r = __cv_->out(*__st_, pbase, pptr, __e,
289 if (__r == codecvt_base::noconv)
294 else if (__r == codecvt_base::ok || __r == codecvt_base::partial)
299 if (__r == codecvt_base::partial)
306 } while (__r == codecvt_base::partial);
330 codecvt_base::result __r;
334 __r = __cv_->unshift(*__st_, __extbuf,
340 } while (__r == codecvt_base::partial);
341 if (__r == codecvt_base::error)