Home
last modified time | relevance | path

Searched refs:__state (Results 1 – 13 of 13) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_codecvt.h62 result out(state_type& __state,
71 return do_out(__state,
76 result unshift(state_type& __state,
81 return do_unshift(__state, __to, __to_limit, __to_next);
84 result in(state_type& __state,
93 return do_in(__state,
102 int length(state_type& __state,
107 return do_length(__state, __from, __from_end, __max);
182 result out(state_type& __state, in out() argument
191 return do_out(__state, in out()
[all …]
D_ios.h91 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); } in setstate() argument
D_ios_base.h187 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; } in _M_setstate_nothrow() argument
188 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; } in _M_clear_nothrow() argument
D_fstream.c344 _State_type __state = _M_state; in seekoff() local
345 int __epos = _M_codecvt->length(__state, _M_ext_buf, _M_ext_buf_converted, in seekoff()
375 : _M_seek_return(__cur + __adj, __state); in seekoff()
D_fstream.h238 pos_type _M_seek_return(off_type __off, _State_type __state) { in _M_seek_return() argument
251 __result.state(__state); in _M_seek_return()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dregex.cpp279 __match_any_but_newline<char>::__exec(__state& __s) const in __exec()
287 __s.__do_ = __state::__reject; in __exec()
291 __s.__do_ = __state::__accept_and_consume; in __exec()
299 __s.__do_ = __state::__reject; in __exec()
306 __match_any_but_newline<wchar_t>::__exec(__state& __s) const in __exec()
316 __s.__do_ = __state::__reject; in __exec()
320 __s.__do_ = __state::__accept_and_consume; in __exec()
328 __s.__do_ = __state::__reject; in __exec()
Dfuture.cpp192 future<void>::future(__assoc_sub_state* __state) in future() argument
193 : __state_(__state) in future()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dregex1280 struct __state
1307 __state()
1320 typedef _VSTD::__state<_CharT> __state;
1328 virtual void __exec(__state&) const {};
1330 virtual void __exec_split(bool, __state&) const {};
1340 typedef _VSTD::__state<_CharT> __state;
1345 virtual void __exec(__state&) const;
1350 __end_state<_CharT>::__exec(__state& __s) const
1352 __s.__do_ = __state::__end_state;
1405 typedef _VSTD::__state<_CharT> __state;
[all …]
Dios317 void clear(iostate __state = goodbit);
318 _LIBCPP_INLINE_VISIBILITY void setstate(iostate __state);
522 ios_base::setstate(iostate __state)
524 clear(__rdstate_ | __state);
588 _LIBCPP_ALWAYS_INLINE void clear(iostate __state = goodbit) {ios_base::clear(__state);}
589 _LIBCPP_ALWAYS_INLINE void setstate(iostate __state) {ios_base::setstate(__state);}
Dfuture1065 explicit future(__assoc_state<_Rp>* __state);
1131 future<_Rp>::future(__assoc_state<_Rp>* __state)
1132 : __state_(__state)
1169 explicit future(__assoc_state<_Rp&>* __state);
1235 future<_Rp&>::future(__assoc_state<_Rp&>* __state)
1236 : __state_(__state)
1268 explicit future(__assoc_sub_state* __state);
Dfstream872 state_type __state = __st_last_;
886 const int __off = __cv_->length(__state, __extbuf_,
902 __st_ = __state;
Dlocale3770 wstring_convert(_Codecvt* __pcvt, state_type __state);
3817 wstring_convert(_Codecvt* __pcvt, state_type __state)
3818 : __cvtptr_(__pcvt), __cvtstate_(__state), __cvtcount_(0)
4036 _Codecvt* __pcvt = new _Codecvt, state_type __state = state_type());
4072 wbuffer_convert(streambuf* __bytebuf, _Codecvt* __pcvt, state_type __state)
4081 __st_(__state),
/ndk/sources/cxx-stl/stlport/src/
Dstdio_streambuf.cpp128 memset( &(p.__state), 0, sizeof(p.__state) ); in seekpos()