HomeSort by relevance Sort by last modified time
    Searched full:iostate (Results 76 - 100 of 392) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ios.h 91 void clear(iostate __state = goodbit) {
92 _M_clear_nothrow(this->rdbuf() ? __state : iostate(__state|ios_base::badbit));
95 void setstate(iostate __state) { this->clear(rdstate() | __state); }
97 iostate exceptions() const { return this->_M_get_exception_mask(); }
98 void exceptions(iostate __mask) {
132 void _M_handle_exception(ios_base::iostate __flag);
_ios_base.h 58 typedef int iostate; typedef in class:ios_base
170 iostate rdstate() const { return _M_iostate; }
185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
187 iostate _M_get_exception_mask() const { return _M_exception_mask; }
188 void _M_set_exception_mask(iostate __mask) { _M_exception_mask = __mask; }
212 iostate _M_iostate;
215 iostate _M_exception_mask;
254 typedef iostate io_state;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ios.h 91 void clear(iostate __state = goodbit) {
92 _M_clear_nothrow(this->rdbuf() ? __state : iostate(__state|ios_base::badbit));
95 void setstate(iostate __state) { this->clear(rdstate() | __state); }
97 iostate exceptions() const { return this->_M_get_exception_mask(); }
98 void exceptions(iostate __mask) {
132 void _M_handle_exception(ios_base::iostate __flag);
_ios_base.h 58 typedef int iostate; typedef in class:ios_base
170 iostate rdstate() const { return _M_iostate; }
185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
187 iostate _M_get_exception_mask() const { return _M_exception_mask; }
188 void _M_set_exception_mask(iostate __mask) { _M_exception_mask = __mask; }
212 iostate _M_iostate;
215 iostate _M_exception_mask;
254 typedef iostate io_state;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ios.h 91 void clear(iostate __state = goodbit) {
92 _M_clear_nothrow(this->rdbuf() ? __state : iostate(__state|ios_base::badbit));
95 void setstate(iostate __state) { this->clear(rdstate() | __state); }
97 iostate exceptions() const { return this->_M_get_exception_mask(); }
98 void exceptions(iostate __mask) {
132 void _M_handle_exception(ios_base::iostate __flag);
_ios_base.h 58 typedef int iostate; typedef in class:ios_base
170 iostate rdstate() const { return _M_iostate; }
185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
187 iostate _M_get_exception_mask() const { return _M_exception_mask; }
188 void _M_set_exception_mask(iostate __mask) { _M_exception_mask = __mask; }
212 iostate _M_iostate;
215 iostate _M_exception_mask;
254 typedef iostate io_state;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ios.h 91 void clear(iostate __state = goodbit) {
92 _M_clear_nothrow(this->rdbuf() ? __state : iostate(__state|ios_base::badbit));
95 void setstate(iostate __state) { this->clear(rdstate() | __state); }
97 iostate exceptions() const { return this->_M_get_exception_mask(); }
98 void exceptions(iostate __mask) {
132 void _M_handle_exception(ios_base::iostate __flag);
_ios_base.h 60 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;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_ios.h 91 void clear(iostate __state = goodbit) {
92 _M_clear_nothrow(this->rdbuf() ? __state : iostate(__state|ios_base::badbit));
95 void setstate(iostate __state) { this->clear(rdstate() | __state); }
97 iostate exceptions() const { return this->_M_get_exception_mask(); }
98 void exceptions(iostate __mask) {
132 void _M_handle_exception(ios_base::iostate __flag);
_ios_base.h 60 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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
basic_ios.h 125 * See std::ios_base::iostate for the possible bit values. Most
128 iostate
136 * See std::ios_base::iostate for the possible bit values. Most
140 clear(iostate __state = goodbit);
146 * See std::ios_base::iostate for the possible bit values.
149 setstate(iostate __state)
156 _M_setstate(iostate __state)
179 * Note that other iostate flags may also be set.
190 * Note that other iostate flags may also be set.
200 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
basic_ios.h 127 * See std::ios_base::iostate for the possible bit values. Most
130 iostate
138 * See std::ios_base::iostate for the possible bit values. Most
142 clear(iostate __state = goodbit);
148 * See std::ios_base::iostate for the possible bit values.
151 setstate(iostate __state)
158 _M_setstate(iostate __state)
181 * Note that other iostate flags may also be set.
192 * Note that other iostate flags may also be set.
202 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
basic_ios.h 127 * See std::ios_base::iostate for the possible bit values. Most
130 iostate
138 * See std::ios_base::iostate for the possible bit values. Most
142 clear(iostate __state = goodbit);
148 * See std::ios_base::iostate for the possible bit values.
151 setstate(iostate __state)
158 _M_setstate(iostate __state)
181 * Note that other iostate flags may also be set.
192 * Note that other iostate flags may also be set.
202 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.h 123 * See std::ios_base::iostate for the possible bit values. Most
126 iostate
134 * See std::ios_base::iostate for the possible bit values. Most
138 clear(iostate __state = goodbit);
144 * See std::ios_base::iostate for the possible bit values.
147 setstate(iostate __state)
154 _M_setstate(iostate __state)
177 * Note that other iostate flags may also be set.
188 * Note that other iostate flags may also be set.
198 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.h 123 * See std::ios_base::iostate for the possible bit values. Most
126 iostate
134 * See std::ios_base::iostate for the possible bit values. Most
138 clear(iostate __state = goodbit);
144 * See std::ios_base::iostate for the possible bit values.
147 setstate(iostate __state)
154 _M_setstate(iostate __state)
177 * Note that other iostate flags may also be set.
188 * Note that other iostate flags may also be set.
198 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.h 123 * See std::ios_base::iostate for the possible bit values. Most
126 iostate
134 * See std::ios_base::iostate for the possible bit values. Most
138 clear(iostate __state = goodbit);
144 * See std::ios_base::iostate for the possible bit values.
147 setstate(iostate __state)
154 _M_setstate(iostate __state)
177 * Note that other iostate flags may also be set.
188 * Note that other iostate flags may also be set.
198 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
basic_ios.h 123 * See std::ios_base::iostate for the possible bit values. Most
126 iostate
134 * See std::ios_base::iostate for the possible bit values. Most
138 clear(iostate __state = goodbit);
144 * See std::ios_base::iostate for the possible bit values.
147 setstate(iostate __state)
154 _M_setstate(iostate __state)
177 * Note that other iostate flags may also be set.
188 * Note that other iostate flags may also be set.
198 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_ios.h 125 * See std::ios_base::iostate for the possible bit values. Most
128 iostate
136 * See std::ios_base::iostate for the possible bit values. Most
140 clear(iostate __state = goodbit);
146 * See std::ios_base::iostate for the possible bit values.
149 setstate(iostate __state)
156 _M_setstate(iostate __state)
179 * Note that other iostate flags may also be set.
190 * Note that other iostate flags may also be set.
200 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
basic_ios.h 125 * See std::ios_base::iostate for the possible bit values. Most
128 iostate
136 * See std::ios_base::iostate for the possible bit values. Most
140 clear(iostate __state = goodbit);
146 * See std::ios_base::iostate for the possible bit values.
149 setstate(iostate __state)
156 _M_setstate(iostate __state)
179 * Note that other iostate flags may also be set.
190 * Note that other iostate flags may also be set.
200 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_ios.h 125 * See std::ios_base::iostate for the possible bit values. Most
128 iostate
136 * See std::ios_base::iostate for the possible bit values. Most
140 clear(iostate __state = goodbit);
146 * See std::ios_base::iostate for the possible bit values.
149 setstate(iostate __state)
156 _M_setstate(iostate __state)
179 * Note that other iostate flags may also be set.
190 * Note that other iostate flags may also be set.
200 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
basic_ios.h 125 * See std::ios_base::iostate for the possible bit values. Most
128 iostate
136 * See std::ios_base::iostate for the possible bit values. Most
140 clear(iostate __state = goodbit);
146 * See std::ios_base::iostate for the possible bit values.
149 setstate(iostate __state)
156 _M_setstate(iostate __state)
179 * Note that other iostate flags may also be set.
190 * Note that other iostate flags may also be set.
200 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
basic_ios.h 127 * See std::ios_base::iostate for the possible bit values. Most
130 iostate
138 * See std::ios_base::iostate for the possible bit values. Most
142 clear(iostate __state = goodbit);
148 * See std::ios_base::iostate for the possible bit values.
151 setstate(iostate __state)
158 _M_setstate(iostate __state)
181 * Note that other iostate flags may also be set.
192 * Note that other iostate flags may also be set.
202 * Note that other iostate flags may also be set
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_ios.h 127 * See std::ios_base::iostate for the possible bit values. Most
130 iostate
138 * See std::ios_base::iostate for the possible bit values. Most
142 clear(iostate __state = goodbit);
148 * See std::ios_base::iostate for the possible bit values.
151 setstate(iostate __state)
158 _M_setstate(iostate __state)
181 * Note that other iostate flags may also be set.
192 * Note that other iostate flags may also be set.
202 * Note that other iostate flags may also be set
    [all...]
  /external/stlport/stlport/stl/
_ios_base.h 58 typedef int iostate; typedef in class:ios_base
170 iostate rdstate() const { return _M_iostate; }
185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
187 iostate _M_get_exception_mask() const { return _M_exception_mask; }
188 void _M_set_exception_mask(iostate __mask) { _M_exception_mask = __mask; }
212 iostate _M_iostate;
215 iostate _M_exception_mask;
254 typedef iostate io_state;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 60 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 911 milliseconds

1 2 34 5 6 7 8 91011>>