HomeSort by relevance Sort by last modified time
    Searched full:__state (Results 51 - 75 of 187) sorted by null

1 23 4 5 6 7 8

  /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); }
  /ndk/sources/cxx-stl/llvm-libc++/src/
regex.cpp 271 __match_any_but_newline<char>::__exec(__state& __s) const
279 __s.__do_ = __state::__reject;
283 __s.__do_ = __state::__accept_and_consume;
291 __s.__do_ = __state::__reject;
298 __match_any_but_newline<wchar_t>::__exec(__state& __s) const
308 __s.__do_ = __state::__reject;
312 __s.__do_ = __state::__accept_and_consume;
320 __s.__do_ = __state::__reject;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
basic_ios.h 134 * @param __state The new state flag(s) to set.
140 clear(iostate __state = goodbit);
144 * @param __state The additional state flag(s) to set.
149 setstate(iostate __state)
150 { this->clear(this->rdstate() | __state); }
156 _M_setstate(iostate __state)
160 _M_streambuf_state |= __state;
161 if (this->exceptions() & __state)
basic_ios.tcc 42 basic_ios<_CharT, _Traits>::clear(iostate __state)
45 _M_streambuf_state = __state;
47 _M_streambuf_state = __state | badbit;
fstream.tcc 743 __state_type __state = _M_state_beg;
747 __state = _M_state_last;
748 __computed_off += _M_get_ext_pos(__state);
751 __ret = _M_seek(__computed_off, __way, __state);
761 __ret.state(__state);
790 _M_seek(off_type __off, ios_base::seekdir __way, __state_type __state)
802 _M_state_cur = __state;
811 // corresponding to gptr(). This is a negative value. Updates __state
815 _M_get_ext_pos(__state_type& __state)
822 // gptr(). Precondition: __state == _M_state_last, whic
    [all...]
  /external/stlport/src/
codecvt.cpp 48 codecvt<char, char, mbstate_t>::do_unshift(state_type& /* __state */,
55 codecvt<char, char, mbstate_t>::do_in (state_type& /* __state */ ,
65 codecvt<char, char, mbstate_t>::do_out(state_type& /* __state */,
  /ndk/sources/cxx-stl/stlport/src/
codecvt.cpp 48 codecvt<char, char, mbstate_t>::do_unshift(state_type& /* __state */,
55 codecvt<char, char, mbstate_t>::do_in (state_type& /* __state */ ,
65 codecvt<char, char, mbstate_t>::do_out(state_type& /* __state */,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
basic_ios.tcc 40 basic_ios<_CharT, _Traits>::clear(iostate __state)
43 _M_streambuf_state = __state;
45 _M_streambuf_state = __state | badbit;
basic_ios.h 138 clear(iostate __state = goodbit);
147 setstate(iostate __state)
148 { this->clear(this->rdstate() | __state); }
154 _M_setstate(iostate __state)
158 _M_streambuf_state |= __state;
159 if (this->exceptions() & __state)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
basic_ios.tcc 42 basic_ios<_CharT, _Traits>::clear(iostate __state)
45 _M_streambuf_state = __state;
47 _M_streambuf_state = __state | badbit;
fstream.tcc 743 __state_type __state = _M_state_beg;
747 __state = _M_state_last;
748 __computed_off += _M_get_ext_pos(__state);
751 __ret = _M_seek(__computed_off, __way, __state);
761 __ret.state(__state);
790 _M_seek(off_type __off, ios_base::seekdir __way, __state_type __state)
802 _M_state_cur = __state;
811 // corresponding to gptr(). This is a negative value. Updates __state
815 _M_get_ext_pos(__state_type& __state)
822 // gptr(). Precondition: __state == _M_state_last, whic
    [all...]
basic_ios.h 140 clear(iostate __state = goodbit);
149 setstate(iostate __state)
150 { this->clear(this->rdstate() | __state); }
156 _M_setstate(iostate __state)
160 _M_streambuf_state |= __state;
161 if (this->exceptions() & __state)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
basic_ios.tcc 42 basic_ios<_CharT, _Traits>::clear(iostate __state)
45 _M_streambuf_state = __state;
47 _M_streambuf_state = __state | badbit;
fstream.tcc 743 __state_type __state = _M_state_beg;
747 __state = _M_state_last;
748 __computed_off += _M_get_ext_pos(__state);
751 __ret = _M_seek(__computed_off, __way, __state);
761 __ret.state(__state);
790 _M_seek(off_type __off, ios_base::seekdir __way, __state_type __state)
802 _M_state_cur = __state;
811 // corresponding to gptr(). This is a negative value. Updates __state
815 _M_get_ext_pos(__state_type& __state)
822 // gptr(). Precondition: __state == _M_state_last, whic
    [all...]
basic_ios.h 140 clear(iostate __state = goodbit);
149 setstate(iostate __state)
150 { this->clear(this->rdstate() | __state); }
156 _M_setstate(iostate __state)
160 _M_streambuf_state |= __state;
161 if (this->exceptions() & __state)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.tcc 40 basic_ios<_CharT, _Traits>::clear(iostate __state)
43 _M_streambuf_state = __state;
45 _M_streambuf_state = __state | badbit;
basic_ios.h 138 clear(iostate __state = goodbit);
147 setstate(iostate __state)
148 { this->clear(this->rdstate() | __state); }
154 _M_setstate(iostate __state)
158 _M_streambuf_state |= __state;
159 if (this->exceptions() & __state)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.tcc 40 basic_ios<_CharT, _Traits>::clear(iostate __state)
43 _M_streambuf_state = __state;
45 _M_streambuf_state = __state | badbit;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.tcc 40 basic_ios<_CharT, _Traits>::clear(iostate __state)
43 _M_streambuf_state = __state;
45 _M_streambuf_state = __state | badbit;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
basic_ios.tcc 40 basic_ios<_CharT, _Traits>::clear(iostate __state)
43 _M_streambuf_state = __state;
45 _M_streambuf_state = __state | badbit;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_ios.tcc 42 basic_ios<_CharT, _Traits>::clear(iostate __state)
45 _M_streambuf_state = __state;
47 _M_streambuf_state = __state | badbit;
fstream.tcc 743 __state_type __state = _M_state_beg;
747 __state = _M_state_last;
748 __computed_off += _M_get_ext_pos(__state);
751 __ret = _M_seek(__computed_off, __way, __state);
761 __ret.state(__state);
790 _M_seek(off_type __off, ios_base::seekdir __way, __state_type __state)
802 _M_state_cur = __state;
811 // corresponding to gptr(). This is a negative value. Updates __state
815 _M_get_ext_pos(__state_type& __state)
822 // gptr(). Precondition: __state == _M_state_last, whic
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
argp.h 440 __state);
504 extern void argp_state_help (__const struct argp_state *__restrict __state,
507 extern void __argp_state_help (__const struct argp_state *__restrict __state,
512 extern void argp_usage (__const struct argp_state *__state);
513 extern void __argp_usage (__const struct argp_state *__state);
518 extern void argp_error (__const struct argp_state *__restrict __state,
521 extern void __argp_error (__const struct argp_state *__restrict __state,
533 extern void argp_failure (__const struct argp_state *__restrict __state,
537 extern void __argp_failure (__const struct argp_state *__restrict __state,
554 __const struct argp_state *__restrict __state)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 440 __state);
504 extern void argp_state_help (__const struct argp_state *__restrict __state,
507 extern void __argp_state_help (__const struct argp_state *__restrict __state,
512 extern void argp_usage (__const struct argp_state *__state);
513 extern void __argp_usage (__const struct argp_state *__state);
518 extern void argp_error (__const struct argp_state *__restrict __state,
521 extern void __argp_error (__const struct argp_state *__restrict __state,
533 extern void argp_failure (__const struct argp_state *__restrict __state,
537 extern void __argp_failure (__const struct argp_state *__restrict __state,
554 __const struct argp_state *__restrict __state)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 440 __state);
504 extern void argp_state_help (__const struct argp_state *__restrict __state,
507 extern void __argp_state_help (__const struct argp_state *__restrict __state,
512 extern void argp_usage (__const struct argp_state *__state);
513 extern void __argp_usage (__const struct argp_state *__state);
518 extern void argp_error (__const struct argp_state *__restrict __state,
521 extern void __argp_error (__const struct argp_state *__restrict __state,
533 extern void argp_failure (__const struct argp_state *__restrict __state,
537 extern void __argp_failure (__const struct argp_state *__restrict __state,
554 __const struct argp_state *__restrict __state)
    [all...]

Completed in 693 milliseconds

1 23 4 5 6 7 8