Lines Matching full:this
54 this->init(__sb);
77 return __pf(*this);
82 __pf(*this);
83 return *this;
87 __pf(*this);
88 return *this;
96 sentry __s(*this);
99 const _Fp& __facet = std::use_facet<_Fp>(this->getloc());
100 if (__facet.put(*this, *this, this->fill(), __value).failed())
101 this->setstate(ios_base::badbit | ios_base::failbit);
105 this->__set_badbit_and_consider_rethrow();
108 return *this;
116 sentry __s(*this);
121 const _Fp& __facet = std::use_facet<_Fp>(this->getloc());
123 .put(*this,
124 *this,
125 this->fill(),
130 this->setstate(ios_base::badbit | ios_base::failbit);
134 this->__set_badbit_and_consider_rethrow();
137 return *this;
163 // LWG 2221 - nullptr. This is not backported to older standards modes.
165 _LIBCPP_HIDE_FROM_ABI basic_ostream& operator<<(nullptr_t) { return *this << "nullptr"; }
222 this->move(__rhs);
228 return *this;
240 sentry __s(*this);
250 _Op __o(*this);
258 this->setstate(ios_base::failbit);
261 this->__set_failbit_and_consider_rethrow();
265 this->setstate(ios_base::badbit);
269 this->__set_badbit_and_consider_rethrow();
272 return *this;
322 return *this << static_cast<double>(__n);
457 sentry __s(*this);
460 _Op __o(*this);
463 this->setstate(ios_base::badbit);
467 this->__set_badbit_and_consider_rethrow();
470 return *this;
478 sentry __sen(*this);
480 if (this->rdbuf()->sputn(__s, __n) != __n)
481 this->setstate(ios_base::badbit);
485 this->__set_badbit_and_consider_rethrow();
488 return *this;
496 if (this->rdbuf()) {
497 sentry __s(*this);
499 if (this->rdbuf()->pubsync() == -1)
500 this->setstate(ios_base::badbit);
505 this->__set_badbit_and_consider_rethrow();
508 return *this;
513 if (this->fail())
515 return this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::out);
520 sentry __s(*this);
521 if (!this->fail()) {
522 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1))
523 this->setstate(ios_base::failbit);
525 return *this;
530 sentry __s(*this);
531 if (!this->fail()) {
532 if (this->rdbuf()->pubseekoff(__off, __dir, ios_base::out) == pos_type(-1))
533 this->setstate(ios_base::failbit);
535 return *this;