Home
last modified time | relevance | path

Searched refs:unsetf (Results 1 – 3 of 3) sorted by relevance

/external/stlport/stlport/stl/
D_ios_base.h125 void unsetf(fmtflags __mask) { _M_fmtflags &= ~__mask; } in unsetf() function
271 { __s.unsetf(ios_base::boolalpha); return __s;} in noboolalpha()
277 { __s.unsetf(ios_base::showbase); return __s;} in noshowbase()
283 { __s.unsetf(ios_base::showpoint); return __s;} in noshowpoint()
289 { __s.unsetf(ios_base::showpos); return __s;} in noshowpos()
295 { __s.unsetf(ios_base::skipws); return __s;} in noskipws()
301 { __s.unsetf(ios_base::uppercase); return __s;} in nouppercase()
307 { __s.unsetf(ios_base::unitbuf); return __s;} in nounitbuf()
/external/chromium_org/third_party/angle/src/compiler/
DInfoSink.h79 stream.unsetf(std::ios::fixed);
80 stream.unsetf(std::ios::scientific);
/external/stlport/test/unit/
Distmit_test.cpp62 istr.unsetf(ios::skipws); // Disable white-space skipping. in istmit1()