Lines Matching refs:this
199 { this->init(__sb); }
223 { return __pf(*this); }
228 { __pf(*this); return *this; }
232 { __pf(*this); return *this; }
262 { return *this << "nullptr"; }
336 this->move(__rhs);
344 return *this;
360 sentry __s(*this);
373 _Op __o(*this);
382 this->setstate(ios_base::failbit);
387 this->__set_failbit_and_consider_rethrow();
392 this->setstate(ios_base::badbit);
398 this->__set_badbit_and_consider_rethrow();
401 return *this;
412 sentry __s(*this);
416 const _Fp& __f = use_facet<_Fp>(this->getloc());
417 if (__f.put(*this, *this, this->fill(), __n).failed())
418 this->setstate(ios_base::badbit | ios_base::failbit);
424 this->__set_badbit_and_consider_rethrow();
427 return *this;
438 sentry __s(*this);
443 const _Fp& __f = use_facet<_Fp>(this->getloc());
444 if (__f.put(*this, *this, this->fill(),
448 this->setstate(ios_base::badbit | ios_base::failbit);
454 this->__set_badbit_and_consider_rethrow();
457 return *this;
468 sentry __s(*this);
472 const _Fp& __f = use_facet<_Fp>(this->getloc());
473 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
474 this->setstate(ios_base::badbit | ios_base::failbit);
480 this->__set_badbit_and_consider_rethrow();
483 return *this;
494 sentry __s(*this);
499 const _Fp& __f = use_facet<_Fp>(this->getloc());
500 if (__f.put(*this, *this, this->fill(),
504 this->setstate(ios_base::badbit | ios_base::failbit);
510 this->__set_badbit_and_consider_rethrow();
513 return *this;
524 sentry __s(*this);
528 const _Fp& __f = use_facet<_Fp>(this->getloc());
529 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
530 this->setstate(ios_base::badbit | ios_base::failbit);
536 this->__set_badbit_and_consider_rethrow();
539 return *this;
550 sentry __s(*this);
554 const _Fp& __f = use_facet<_Fp>(this->getloc());
555 if (__f.put(*this, *this, this->fill(), __n).failed())
556 this->setstate(ios_base::badbit | ios_base::failbit);
562 this->__set_badbit_and_consider_rethrow();
565 return *this;
576 sentry __s(*this);
580 const _Fp& __f = use_facet<_Fp>(this->getloc());
581 if (__f.put(*this, *this, this->fill(), __n).failed())
582 this->setstate(ios_base::badbit | ios_base::failbit);
588 this->__set_badbit_and_consider_rethrow();
591 return *this;
602 sentry __s(*this);
606 const _Fp& __f = use_facet<_Fp>(this->getloc());
607 if (__f.put(*this, *this, this->fill(), __n).failed())
608 this->setstate(ios_base::badbit | ios_base::failbit);
614 this->__set_badbit_and_consider_rethrow();
617 return *this;
628 sentry __s(*this);
632 const _Fp& __f = use_facet<_Fp>(this->getloc());
633 if (__f.put(*this, *this, this->fill(), __n).failed())
634 this->setstate(ios_base::badbit | ios_base::failbit);
640 this->__set_badbit_and_consider_rethrow();
643 return *this;
654 sentry __s(*this);
658 const _Fp& __f = use_facet<_Fp>(this->getloc());
659 if (__f.put(*this, *this, this->fill(), static_cast<double>(__n)).failed())
660 this->setstate(ios_base::badbit | ios_base::failbit);
666 this->__set_badbit_and_consider_rethrow();
669 return *this;
680 sentry __s(*this);
684 const _Fp& __f = use_facet<_Fp>(this->getloc());
685 if (__f.put(*this, *this, this->fill(), __n).failed())
686 this->setstate(ios_base::badbit | ios_base::failbit);
692 this->__set_badbit_and_consider_rethrow();
695 return *this;
706 sentry __s(*this);
710 const _Fp& __f = use_facet<_Fp>(this->getloc());
711 if (__f.put(*this, *this, this->fill(), __n).failed())
712 this->setstate(ios_base::badbit | ios_base::failbit);
718 this->__set_badbit_and_consider_rethrow();
721 return *this;
732 sentry __s(*this);
736 const _Fp& __f = use_facet<_Fp>(this->getloc());
737 if (__f.put(*this, *this, this->fill(), __n).failed())
738 this->setstate(ios_base::badbit | ios_base::failbit);
744 this->__set_badbit_and_consider_rethrow();
747 return *this;
929 sentry __s(*this);
933 _Op __o(*this);
936 this->setstate(ios_base::badbit);
942 this->__set_badbit_and_consider_rethrow();
945 return *this;
956 sentry __sen(*this);
959 if (this->rdbuf()->sputn(__s, __n) != __n)
960 this->setstate(ios_base::badbit);
966 this->__set_badbit_and_consider_rethrow();
969 return *this;
980 if (this->rdbuf())
982 sentry __s(*this);
985 if (this->rdbuf()->pubsync() == -1)
986 this->setstate(ios_base::badbit);
993 this->__set_badbit_and_consider_rethrow();
996 return *this;
1003 if (this->fail())
1005 return this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::out);
1012 sentry __s(*this);
1013 if (!this->fail())
1015 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1))
1016 this->setstate(ios_base::failbit);
1018 return *this;
1025 sentry __s(*this);
1026 if (!this->fail())
1028 if (this->rdbuf()->pubseekoff(__off, __dir, ios_base::out) == pos_type(-1))
1029 this->setstate(ios_base::failbit);
1031 return *this;