OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_M_iostate
(Results
1 - 3
of
3
) sorted by null
/prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h
172
iostate rdstate() const { return
_M_iostate
; }
174
bool good() const { return
_M_iostate
== 0; }
175
bool eof() const { return (
_M_iostate
& eofbit) != 0; }
176
bool fail() const { return (
_M_iostate
& (failbit | badbit)) != 0; }
177
bool bad() const { return (
_M_iostate
& badbit) != 0; }
184
// or
_M_iostate
.
187
void _M_setstate_nothrow(iostate __state) {
_M_iostate
|= __state; }
188
void _M_clear_nothrow(iostate __state) {
_M_iostate
= __state; }
192
if (
_M_iostate
& _M_exception_mask)
214
iostate
_M_iostate
;
[
all
...]
/prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h
172
iostate rdstate() const { return
_M_iostate
; }
174
bool good() const { return
_M_iostate
== 0; }
175
bool eof() const { return (
_M_iostate
& eofbit) != 0; }
176
bool fail() const { return (
_M_iostate
& (failbit | badbit)) != 0; }
177
bool bad() const { return (
_M_iostate
& badbit) != 0; }
184
// or
_M_iostate
.
187
void _M_setstate_nothrow(iostate __state) {
_M_iostate
|= __state; }
188
void _M_clear_nothrow(iostate __state) {
_M_iostate
= __state; }
192
if (
_M_iostate
& _M_exception_mask)
214
iostate
_M_iostate
;
[
all
...]
/prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h
172
iostate rdstate() const { return
_M_iostate
; }
174
bool good() const { return
_M_iostate
== 0; }
175
bool eof() const { return (
_M_iostate
& eofbit) != 0; }
176
bool fail() const { return (
_M_iostate
& (failbit | badbit)) != 0; }
177
bool bad() const { return (
_M_iostate
& badbit) != 0; }
184
// or
_M_iostate
.
187
void _M_setstate_nothrow(iostate __state) {
_M_iostate
|= __state; }
188
void _M_clear_nothrow(iostate __state) {
_M_iostate
= __state; }
192
if (
_M_iostate
& _M_exception_mask)
214
iostate
_M_iostate
;
[
all
...]
Completed in 423 milliseconds