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

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_ios_base.h60 typedef int iostate; typedef in class:ios_base
172 iostate rdstate() const { return _M_iostate; }
187 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
188 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
189 iostate _M_get_exception_mask() const { return _M_exception_mask; }
190 void _M_set_exception_mask(iostate __mask) { _M_exception_mask = __mask; }
214 iostate _M_iostate;
217 iostate _M_exception_mask;
256 typedef iostate io_state;

Completed in 28 milliseconds