ReactOS 0.4.15-dev-7788-g1ad9096
_ios_base.h File Reference
#include <stl/_stdexcept_base.h>
#include <stl/_pair.h>
#include <stl/_locale.h>
#include <stl/_string.h>
Include dependency graph for _ios_base.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ios_base
 
class  ios_base::failure
 
class  ios_base::Init
 

Functions

ios_base &_STLP_CALL boolalpha (ios_base &__s)
 
ios_base &_STLP_CALL noboolalpha (ios_base &__s)
 
ios_base &_STLP_CALL showbase (ios_base &__s)
 
ios_base &_STLP_CALL noshowbase (ios_base &__s)
 
ios_base &_STLP_CALL showpoint (ios_base &__s)
 
ios_base &_STLP_CALL noshowpoint (ios_base &__s)
 
ios_base &_STLP_CALL showpos (ios_base &__s)
 
ios_base &_STLP_CALL noshowpos (ios_base &__s)
 
ios_base &_STLP_CALL skipws (ios_base &__s)
 
ios_base &_STLP_CALL noskipws (ios_base &__s)
 
ios_base &_STLP_CALL uppercase (ios_base &__s)
 
ios_base &_STLP_CALL nouppercase (ios_base &__s)
 
ios_base &_STLP_CALL unitbuf (ios_base &__s)
 
ios_base &_STLP_CALL nounitbuf (ios_base &__s)
 
ios_base &_STLP_CALL internal (ios_base &__s)
 
ios_base &_STLP_CALL left (ios_base &__s)
 
ios_base &_STLP_CALL right (ios_base &__s)
 
ios_base &_STLP_CALL dec (ios_base &__s)
 
ios_base &_STLP_CALL hex (ios_base &__s)
 
ios_base &_STLP_CALL oct (ios_base &__s)
 
ios_base &_STLP_CALL fixed (ios_base &__s)
 
ios_base &_STLP_CALL scientific (ios_base &__s)
 

Function Documentation

◆ boolalpha()

ios_base &_STLP_CALL boolalpha ( ios_base __s)
inline

Definition at line 267 of file _ios_base.h.

268 { __s.setf(ios_base::boolalpha); return __s;}
fmtflags setf(fmtflags __flag)
Definition: _ios_base.h:114

◆ dec()

◆ fixed()

◆ hex()

ios_base &_STLP_CALL hex ( ios_base __s)
inline

Definition at line 324 of file _ios_base.h.

325 { __s.setf(ios_base::hex, ios_base::basefield); return __s; }

◆ internal()

◆ left()

ios_base &_STLP_CALL left ( ios_base __s)
inline

Definition at line 314 of file _ios_base.h.

315 { __s.setf(ios_base::left, ios_base::adjustfield); return __s; }

◆ noboolalpha()

ios_base &_STLP_CALL noboolalpha ( ios_base __s)
inline

Definition at line 270 of file _ios_base.h.

271 { __s.unsetf(ios_base::boolalpha); return __s;}
void unsetf(fmtflags __mask)
Definition: _ios_base.h:125

◆ noshowbase()

ios_base &_STLP_CALL noshowbase ( ios_base __s)
inline

Definition at line 276 of file _ios_base.h.

277 { __s.unsetf(ios_base::showbase); return __s;}

◆ noshowpoint()

ios_base &_STLP_CALL noshowpoint ( ios_base __s)
inline

Definition at line 282 of file _ios_base.h.

283 { __s.unsetf(ios_base::showpoint); return __s;}

◆ noshowpos()

ios_base &_STLP_CALL noshowpos ( ios_base __s)
inline

Definition at line 288 of file _ios_base.h.

289 { __s.unsetf(ios_base::showpos); return __s;}

Referenced by NumPutGetTest::num_put_integer().

◆ noskipws()

ios_base &_STLP_CALL noskipws ( ios_base __s)
inline

Definition at line 294 of file _ios_base.h.

295 { __s.unsetf(ios_base::skipws); return __s;}

◆ nounitbuf()

ios_base &_STLP_CALL nounitbuf ( ios_base __s)
inline

Definition at line 306 of file _ios_base.h.

307 { __s.unsetf(ios_base::unitbuf); return __s;}

◆ nouppercase()

ios_base &_STLP_CALL nouppercase ( ios_base __s)
inline

Definition at line 300 of file _ios_base.h.

301 { __s.unsetf(ios_base::uppercase); return __s;}

Referenced by NumPutGetTest::num_put_integer().

◆ oct()

ios_base &_STLP_CALL oct ( ios_base __s)
inline

Definition at line 327 of file _ios_base.h.

328 { __s.setf(ios_base::oct, ios_base::basefield); return __s; }

Referenced by NumPutGetTest::num_get_integer(), NumPutGetTest::num_put_integer(), CMenuDeskBar::Popup(), and test__strtoi64().

◆ right()

ios_base &_STLP_CALL right ( ios_base __s)
inline

Definition at line 317 of file _ios_base.h.

318 { __s.setf(ios_base::right, ios_base::adjustfield); return __s; }

◆ scientific()

ios_base &_STLP_CALL scientific ( ios_base __s)
inline

Definition at line 335 of file _ios_base.h.

336 { __s.setf(ios_base::scientific, ios_base::floatfield); return __s; }

Referenced by NumPutGetTest::check_get_float(), and NumPutGetTest::num_put_float().

◆ showbase()

ios_base &_STLP_CALL showbase ( ios_base __s)
inline

Definition at line 273 of file _ios_base.h.

274 { __s.setf(ios_base::showbase); return __s;}

Referenced by LocaleTest::_money_put_get2(), LocaleTest::_money_put_X_bug(), NumPutGetTest::inhex(), and NumPutGetTest::num_put_integer().

◆ showpoint()

ios_base &_STLP_CALL showpoint ( ios_base __s)
inline

Definition at line 279 of file _ios_base.h.

280 { __s.setf(ios_base::showpoint); return __s;}

◆ showpos()

ios_base &_STLP_CALL showpos ( ios_base __s)
inline

Definition at line 285 of file _ios_base.h.

286 { __s.setf(ios_base::showpos); return __s;}

Referenced by NumPutGetTest::num_put_float(), and NumPutGetTest::num_put_integer().

◆ skipws()

ios_base &_STLP_CALL skipws ( ios_base __s)
inline

Definition at line 291 of file _ios_base.h.

292 { __s.setf(ios_base::skipws); return __s;}

◆ unitbuf()

ios_base &_STLP_CALL unitbuf ( ios_base __s)
inline

Definition at line 303 of file _ios_base.h.

304 { __s.setf(ios_base::unitbuf); return __s;}

◆ uppercase()

ios_base &_STLP_CALL uppercase ( ios_base __s)
inline

Definition at line 297 of file _ios_base.h.

298 { __s.setf(ios_base::uppercase); return __s;}

Referenced by NumPutGetTest::num_put_integer().