Go to the source code of this file.
◆ boolalpha()
Definition at line 267 of file _ios_base.h.
268 { __s.
setf(ios_base::boolalpha);
return __s;}
fmtflags setf(fmtflags __flag)
◆ dec()
Definition at line 321 of file _ios_base.h.
322 { __s.
setf(ios_base::dec, ios_base::basefield);
return __s; }
Referenced by _BSTR_DEC(), format_size(), tinyxml2::XMLDocument::NewDeclaration(), NumPutGetTest::num_put_integer(), setdec(), setdec64(), tinyxml2::XMLDeclaration::ShallowClone(), str_to_number(), stream_out_para_num(), test_fcvt(), test_marshal_VARIANT(), test_VarAdd(), test_VarCmp(), test_VarDiv(), test_VarIdiv(), test_VarImp(), test_VarMul(), test_VarPow(), test_VarSub(), and WCacheGetSortedListIndex().
◆ fixed()
Definition at line 332 of file _ios_base.h.
333 { __s.
setf(ios_base::fixed, ios_base::floatfield);
return __s; }
Referenced by NumPutGetTest::check_get_float(), DBG_cutIntersectionPoly(), file_cd(), file_cvt(), file_find(), file_modify(), file_name(), file_type(), fixed_to_double(), fixedtables(), NumPutGetTest::num_put_float(), CWineTest::RunTest(), and wmain().
◆ hex()
Definition at line 324 of file _ios_base.h.
325 { __s.
setf(ios_base::hex, ios_base::basefield);
return __s; }
◆ internal()
Definition at line 311 of file _ios_base.h.
312 { __s.
setf(ios_base::internal, ios_base::adjustfield);
return __s; }
Referenced by cff_builder_init(), cff_decoder_prepare(), cff_size_done(), cff_size_init(), cff_size_request(), cff_slot_load(), check_filter(), cid_slot_load_glyph(), create_and_bind_fbo_attachment(), ft_glyphslot_init(), FT_Load_Glyph(), FT_New_Size(), ft_open_face_internal(), FT_Set_Transform(), NumPutGetTest::num_put_float(), NumPutGetTest::num_put_integer(), open_face(), query_format_flag(), StorageBaseImpl_CopyTo(), T1_Load_Glyph(), texture1d_prepare_texture(), texture2d_prepare_texture(), texture3d_prepare_texture(), and wined3d_surface_upload_data().
◆ left()
Definition at line 314 of file _ios_base.h.
315 { __s.
setf(ios_base::left, ios_base::adjustfield);
return __s; }
◆ noboolalpha()
Definition at line 270 of file _ios_base.h.
271 { __s.
unsetf(ios_base::boolalpha);
return __s;}
void unsetf(fmtflags __mask)
◆ noshowbase()
◆ noshowpoint()
◆ noshowpos()
◆ noskipws()
◆ nounitbuf()
◆ nouppercase()
◆ oct()
◆ right()
Definition at line 317 of file _ios_base.h.
318 { __s.
setf(ios_base::right, ios_base::adjustfield);
return __s; }
◆ scientific()
◆ showbase()
◆ showpoint()
Definition at line 279 of file _ios_base.h.
280 { __s.
setf(ios_base::showpoint);
return __s;}
◆ showpos()
◆ skipws()
Definition at line 291 of file _ios_base.h.
292 { __s.
setf(ios_base::skipws);
return __s;}
◆ unitbuf()
Definition at line 303 of file _ios_base.h.
304 { __s.
setf(ios_base::unitbuf);
return __s;}
◆ uppercase()