HomeSort by relevance Sort by last modified time
    Searched refs:__state (Results 1 - 25 of 72) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/impl/
profiler_state.h 37 _GLIBCXX_PROFILE_DEFINE_DATA(__state_type, __state, __INVALID);
43 return __atomic_compare_exchange_n(&_GLIBCXX_PROFILE_DATA(__state),
58 { return _GLIBCXX_PROFILE_DATA(__state) == __ON; }
62 { return _GLIBCXX_PROFILE_DATA(__state) == __OFF; }
66 { return _GLIBCXX_PROFILE_DATA(__state) == __INVALID; }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/impl/
profiler_state.h 37 _GLIBCXX_PROFILE_DEFINE_DATA(__state_type, __state, __INVALID);
43 return __atomic_compare_exchange_n(&_GLIBCXX_PROFILE_DATA(__state),
58 { return _GLIBCXX_PROFILE_DATA(__state) == __ON; }
62 { return _GLIBCXX_PROFILE_DATA(__state) == __OFF; }
66 { return _GLIBCXX_PROFILE_DATA(__state) == __INVALID; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/impl/
profiler_state.h 37 _GLIBCXX_PROFILE_DEFINE_DATA(__state_type, __state, __INVALID);
43 return __atomic_compare_exchange_n(&_GLIBCXX_PROFILE_DATA(__state),
58 { return _GLIBCXX_PROFILE_DATA(__state) == __ON; }
62 { return _GLIBCXX_PROFILE_DATA(__state) == __OFF; }
66 { return _GLIBCXX_PROFILE_DATA(__state) == __INVALID; }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/impl/
profiler_state.h 37 _GLIBCXX_PROFILE_DEFINE_DATA(__state_type, __state, __INVALID);
43 return __atomic_compare_exchange_n(&_GLIBCXX_PROFILE_DATA(__state),
58 { return _GLIBCXX_PROFILE_DATA(__state) == __ON; }
62 { return _GLIBCXX_PROFILE_DATA(__state) == __OFF; }
66 { return _GLIBCXX_PROFILE_DATA(__state) == __INVALID; }
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 62 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,
191 return do_out(__state,
    [all...]
_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); }
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 62 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,
191 return do_out(__state,
    [all...]
_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); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
enc_filebuf.h 50 enc_filebuf(state_type& __state)
52 { this->_M_state_beg = __state; }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
enc_filebuf.h 50 enc_filebuf(state_type& __state)
52 { this->_M_state_beg = __state; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
enc_filebuf.h 50 enc_filebuf(state_type& __state)
52 { this->_M_state_beg = __state; }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
enc_filebuf.h 50 enc_filebuf(state_type& __state)
52 { this->_M_state_beg = __state; }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
codecvt.h 106 * @param __state Persistent conversion state data.
116 out(state_type& __state, const intern_type* __from,
121 return this->do_out(__state, __from, __from_end, __from_next,
148 * @param __state Persistent conversion state data.
155 unshift(state_type& __state, extern_type* __to, extern_type* __to_end,
157 { return this->do_unshift(__state, __to,__to_end,__to_next); }
186 * @param __state Persistent conversion state data.
196 in(state_type& __state, const extern_type* __from,
201 return this->do_in(__state, __from, __from_end, __from_next,
214 length(state_type& __state, const extern_type* __from
    [all...]
basic_ios.h 136 * @param __state The new state flag(s) to set.
142 clear(iostate __state = goodbit);
146 * @param __state The additional state flag(s) to set.
151 setstate(iostate __state)
152 { this->clear(this->rdstate() | __state); }
158 _M_setstate(iostate __state)
162 _M_streambuf_state |= __state;
163 if (this->exceptions() & __state)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
codecvt.h 106 * @param __state Persistent conversion state data.
116 out(state_type& __state, const intern_type* __from,
121 return this->do_out(__state, __from, __from_end, __from_next,
148 * @param __state Persistent conversion state data.
155 unshift(state_type& __state, extern_type* __to, extern_type* __to_end,
157 { return this->do_unshift(__state, __to,__to_end,__to_next); }
186 * @param __state Persistent conversion state data.
196 in(state_type& __state, const extern_type* __from,
201 return this->do_in(__state, __from, __from_end, __from_next,
214 length(state_type& __state, const extern_type* __from
    [all...]
basic_ios.h 136 * @param __state The new state flag(s) to set.
142 clear(iostate __state = goodbit);
146 * @param __state The additional state flag(s) to set.
151 setstate(iostate __state)
152 { this->clear(this->rdstate() | __state); }
158 _M_setstate(iostate __state)
162 _M_streambuf_state |= __state;
163 if (this->exceptions() & __state)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
codecvt.h 106 * @param __state Persistent conversion state data.
116 out(state_type& __state, const intern_type* __from,
121 return this->do_out(__state, __from, __from_end, __from_next,
148 * @param __state Persistent conversion state data.
155 unshift(state_type& __state, extern_type* __to, extern_type* __to_end,
157 { return this->do_unshift(__state, __to,__to_end,__to_next); }
186 * @param __state Persistent conversion state data.
196 in(state_type& __state, const extern_type* __from,
201 return this->do_in(__state, __from, __from_end, __from_next,
214 length(state_type& __state, const extern_type* __from
    [all...]
basic_ios.h 136 * @param __state The new state flag(s) to set.
142 clear(iostate __state = goodbit);
146 * @param __state The additional state flag(s) to set.
151 setstate(iostate __state)
152 { this->clear(this->rdstate() | __state); }
158 _M_setstate(iostate __state)
162 _M_streambuf_state |= __state;
163 if (this->exceptions() & __state)
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
codecvt.h 106 * @param __state Persistent conversion state data.
116 out(state_type& __state, const intern_type* __from,
121 return this->do_out(__state, __from, __from_end, __from_next,
148 * @param __state Persistent conversion state data.
155 unshift(state_type& __state, extern_type* __to, extern_type* __to_end,
157 { return this->do_unshift(__state, __to,__to_end,__to_next); }
186 * @param __state Persistent conversion state data.
196 in(state_type& __state, const extern_type* __from,
201 return this->do_in(__state, __from, __from_end, __from_next,
214 length(state_type& __state, const extern_type* __from
    [all...]
basic_ios.h 136 * @param __state The new state flag(s) to set.
142 clear(iostate __state = goodbit);
146 * @param __state The additional state flag(s) to set.
151 setstate(iostate __state)
152 { this->clear(this->rdstate() | __state); }
158 _M_setstate(iostate __state)
162 _M_streambuf_state |= __state;
163 if (this->exceptions() & __state)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
argp.h 156 struct argp_state *__state);
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,
    [all...]
_G_config.h 25 __mbstate_t __state; member in struct:__anon38246
30 __mbstate_t __state; member in struct:__anon38247
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
argp.h 156 struct argp_state *__state);
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,
    [all...]
  /external/libcxx/src/
regex.cpp 279 __match_any_but_newline<char>::__exec(__state& __s) const
287 __s.__do_ = __state::__reject;
291 __s.__do_ = __state::__accept_and_consume;
299 __s.__do_ = __state::__reject;
306 __match_any_but_newline<wchar_t>::__exec(__state& __s) const
316 __s.__do_ = __state::__reject;
320 __s.__do_ = __state::__accept_and_consume;
328 __s.__do_ = __state::__reject;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
regex.cpp 279 __match_any_but_newline<char>::__exec(__state& __s) const
287 __s.__do_ = __state::__reject;
291 __s.__do_ = __state::__accept_and_consume;
299 __s.__do_ = __state::__reject;
306 __match_any_but_newline<wchar_t>::__exec(__state& __s) const
316 __s.__do_ = __state::__reject;
320 __s.__do_ = __state::__accept_and_consume;
328 __s.__do_ = __state::__reject;

Completed in 1764 milliseconds

1 2 3