Searched defs:_M_iostate (Results 1 - 1 of 1) sorted by relevance

/external/stlport/stlport/stl/
H A D_ios_base.h170 iostate rdstate() const { return _M_iostate; }
172 bool good() const { return _M_iostate == 0; }
173 bool eof() const { return (_M_iostate & eofbit) != 0; }
174 bool fail() const { return (_M_iostate & (failbit | badbit)) != 0; }
175 bool bad() const { return (_M_iostate & badbit) != 0; }
182 // or _M_iostate.
185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
190 if (_M_iostate & _M_exception_mask)
212 iostate _M_iostate; member in class:ios_base
[all...]

Completed in 473 milliseconds