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

1 2

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stream_iterator.h 53 bool _M_ok;
58 : _M_stream(0), _M_value(), _M_ok(false) {}
67 _M_ok(__obj._M_ok)
73 __glibcxx_requires_cond(_M_ok,
85 __glibcxx_requires_cond(_M_ok,
95 __glibcxx_requires_cond(_M_ok,
105 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stream_iterator.h 60 bool _M_ok;
65 : _M_stream(0), _M_value(), _M_ok(false) {}
74 _M_ok(__obj._M_ok)
80 __glibcxx_requires_cond(_M_ok,
92 __glibcxx_requires_cond(_M_ok,
102 __glibcxx_requires_cond(_M_ok,
112 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stream_iterator.h 60 bool _M_ok;
65 : _M_stream(0), _M_value(), _M_ok(false) {}
74 _M_ok(__obj._M_ok)
80 __glibcxx_requires_cond(_M_ok,
92 __glibcxx_requires_cond(_M_ok,
102 __glibcxx_requires_cond(_M_ok,
112 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stream_iterator.h 53 bool _M_ok;
58 : _M_stream(0), _M_value(), _M_ok(false) {}
67 _M_ok(__obj._M_ok)
73 __glibcxx_requires_cond(_M_ok,
85 __glibcxx_requires_cond(_M_ok,
95 __glibcxx_requires_cond(_M_ok,
105 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stream_iterator.h 53 bool _M_ok;
58 : _M_stream(0), _M_value(), _M_ok(false) {}
67 _M_ok(__obj._M_ok)
73 __glibcxx_requires_cond(_M_ok,
85 __glibcxx_requires_cond(_M_ok,
95 __glibcxx_requires_cond(_M_ok,
105 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stream_iterator.h 53 bool _M_ok;
58 : _M_stream(0), _M_value(), _M_ok(false) {}
67 _M_ok(__obj._M_ok)
73 __glibcxx_requires_cond(_M_ok,
85 __glibcxx_requires_cond(_M_ok,
95 __glibcxx_requires_cond(_M_ok,
105 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stream_iterator.h 53 bool _M_ok;
58 : _M_stream(0), _M_value(), _M_ok(false) {}
67 _M_ok(__obj._M_ok)
73 __glibcxx_requires_cond(_M_ok,
85 __glibcxx_requires_cond(_M_ok,
95 __glibcxx_requires_cond(_M_ok,
105 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stream_iterator.h 60 bool _M_ok;
65 : _M_stream(0), _M_value(), _M_ok(false) {}
74 _M_ok(__obj._M_ok)
80 __glibcxx_requires_cond(_M_ok,
92 __glibcxx_requires_cond(_M_ok,
102 __glibcxx_requires_cond(_M_ok,
112 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stream_iterator.h 60 bool _M_ok;
65 : _M_stream(0), _M_value(), _M_ok(false) {}
74 _M_ok(__obj._M_ok)
80 __glibcxx_requires_cond(_M_ok,
92 __glibcxx_requires_cond(_M_ok,
102 __glibcxx_requires_cond(_M_ok,
112 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
    [all...]
  /external/stlport/stlport/stl/
_ostreambuf_iterator.h 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
71 bool failed() const { return !_M_ok; }
75 bool _M_ok;
80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
_stream_iterator.h 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {}
109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {}
137 return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
143 mutable bool _M_ok;
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
148 if (_M_ok) {
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
_istream.h 192 const bool _M_ok;
200 _M_ok((__noskipws || !(__istr.flags() & ios_base::skipws)) ? _M_init_noskip(__istr) : _M_init_skip(__istr) )
207 _M_ok(_M_init_noskip(__istr)) {}
211 operator bool() const { return _M_ok; }
215 sentry(const _Self&) : _M_ok(false) {}
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
71 bool failed() const { return !_M_ok; }
75 bool _M_ok;
80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
_stream_iterator.h 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {}
109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {}
137 return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
143 mutable bool _M_ok;
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
148 if (_M_ok) {
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
_istream.h 192 const bool _M_ok;
200 _M_ok((__noskipws || !(__istr.flags() & ios_base::skipws)) ? _M_init_noskip(__istr) : _M_init_skip(__istr) )
207 _M_ok(_M_init_noskip(__istr)) {}
211 operator bool() const { return _M_ok; }
215 sentry(const _Self&) : _M_ok(false) {}
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
71 bool failed() const { return !_M_ok; }
75 bool _M_ok;
80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
_stream_iterator.h 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {}
109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {}
137 return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
143 mutable bool _M_ok;
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
148 if (_M_ok) {
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
_istream.h 192 const bool _M_ok;
200 _M_ok((__noskipws || !(__istr.flags() & ios_base::skipws)) ? _M_init_noskip(__istr) : _M_init_skip(__istr) )
207 _M_ok(_M_init_noskip(__istr)) {}
211 operator bool() const { return _M_ok; }
215 sentry(const _Self&) : _M_ok(false) {}
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
71 bool failed() const { return !_M_ok; }
75 bool _M_ok;
80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
_stream_iterator.h 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {}
109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {}
137 return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
143 mutable bool _M_ok;
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
148 if (_M_ok) {
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
_istream.h 192 const bool _M_ok;
200 _M_ok((__noskipws || !(__istr.flags() & ios_base::skipws)) ? _M_init_noskip(__istr) : _M_init_skip(__istr) )
207 _M_ok(_M_init_noskip(__istr)) {}
211 operator bool() const { return _M_ok; }
215 sentry(const _Self&) : _M_ok(false) {}
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
71 bool failed() const { return !_M_ok; }
75 bool _M_ok;
80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
_stream_iterator.h 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {}
109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {}
137 return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
143 mutable bool _M_ok;
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
148 if (_M_ok) {
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
71 bool failed() const { return !_M_ok; }
75 bool _M_ok;
80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
_stream_iterator.h 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {}
109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {}
137 return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream);
143 mutable bool _M_ok;
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
148 if (_M_ok) {
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();

Completed in 1048 milliseconds

1 2