OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_M_iostate
(Results
1 - 2
of
2
) sorted by null
/external/stlport/stlport/stl/
_ios_base.h
170
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
;
[
all
...]
/external/stlport/src/
ios.cpp
213
ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,
_M_iostate
));
231
// or
_M_iostate
.
233
_M_fmtflags = x._M_fmtflags; // Copy the flags, except for
_M_iostate
286
: _M_fmtflags(0),
_M_iostate
(0), _M_openmode(0), _M_seekdir(0),
Completed in 13 milliseconds