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

1 2 3 4 5

  /external/stlport/stlport/stl/
_iterator.h 55 typedef reverse_iterator<_Iterator> _Self;
65 reverse_iterator(const _Self& __x) : current(__x.current) {}
66 _Self& operator = (const _Self& __x) { current = __x.base(); return *this; }
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
80 _Self& operator++() {
84 _Self operator++(int) {
85 _Self __tmp = *this;
89 _Self& operator--() {
93 _Self operator--(int)
    [all...]
_istream.h 64 typedef basic_istream<_CharT, _Traits> _Self;
68 basic_istream(_Self const&);
69 _Self& operator = (_Self const&);
83 typedef _Self& (_STLP_CALL *__istream_fn)(_Self&);
96 _Self& operator>> (__istream_fn __f) { return __f(*this); }
97 _Self& operator>> (__ios_fn __f) { __f(*this); return *this; }
98 _Self& operator>> (__ios_base_fn __f) { __f(*this); return *this; }
101 _Self& operator>> (short& __val)
    [all...]
_ostream.h 54 typedef basic_ostream<_CharT, _Traits> _Self;
58 basic_ostream(_Self const&);
59 _Self& operator = (_Self const&);
77 typedef _Self& (_STLP_CALL *__ostream_fn)(_Self&);
78 _Self& operator<< (__ostream_fn __f) { return __f(*this); }
79 _Self & operator<< (__ios_base_fn __f) { __f(*this); return *this; }
80 _Self& operator<< (__ios_fn __ff) { __ff(*this); return *this; }
96 _Self& put(char_type __c)
    [all...]
_stream_iterator.h 96 typedef istream_iterator< __ISI_TMPL_ARGUMENTS > _Self;
120 _Self& operator++() {
124 _Self operator++(int) {
125 _Self __tmp = *this;
130 bool _M_equal(const _Self& __x) const {
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
149 *_M_stream >> _STLP_MUTABLE(_Self, _M_value);
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
152 _STLP_MUTABLE(_Self, _M_read_done) = true;
166 typedef ostream_iterator<_TpP> _Self;
    [all...]
_iterator_old.h 66 Reference__, _Distance> _Self;
67 // friend inline bool operator== _STLP_NULL_TMPL_ARGS (const _Self& x, const _Self& y);
92 _Self& operator++() {
96 _Self operator++(int) {
97 _Self __tmp = *this;
101 _Self& operator--() {
105 _Self operator--(int) {
106 _Self __tmp = *this;
161 typedef reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance> _Self;
    [all...]
_auto_ptr.h 43 typedef auto_ptr_ref<_Tp> _Self;
44 _Self& operator = (_Self const&);
51 typedef auto_ptr<_Tp> _Self;
100 auto_ptr(_Self& __r) _STLP_NOTHROW { this->__set(__r.release()); }
102 _Self& operator=(_Self& __r) _STLP_NOTHROW {
112 _Self& operator=(auto_ptr_ref<_Tp> __r) _STLP_NOTHROW {
_numpunct.h 129 typedef numpunct_byname<char> _Self;
130 numpunct_byname(_Self const&);
131 _Self& operator = (_Self const&);
160 typedef numpunct_byname<wchar_t> _Self;
161 numpunct_byname(_Self const&);
162 _Self& operator = (_Self const&);
_complex.h 38 typedef complex<_Tp> _Self;
46 complex(const _Self& __z)
49 _Self& operator=(const _Self& __z) {
61 _Self& operator=(const complex<_Tp2>& __z) {
74 _Self& operator= (const value_type& __x) {
79 _Self& operator+= (const value_type& __x) {
83 _Self& operator-= (const value_type& __x) {
87 _Self& operator*= (const value_type& __x) {
92 _Self& operator/= (const value_type& __x)
    [all...]
_string_workaround.h 34 typedef basic_string<_CharT, _Traits, _Alloc> _Self;
55 basic_string(const _Self& __s)
58 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
75 basic_string(__move_source<_Self> src)
97 _Self& operator=(const _Self& __s) {
102 _Self& operator=(const _CharT* __s) {
107 _Self& operator=(_CharT __c) {
148 _Self& operator+=(const _Self& __s)
    [all...]
_sstream.h 64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self;
148 typedef basic_istringstream<_CharT, _Traits> _Self;
150 basic_istringstream(_Self const&);
151 _Self& operator = (_Self const&);
192 typedef basic_ostringstream<_CharT, _Traits> _Self;
194 basic_ostringstream(_Self const&);
195 _Self& operator = (_Self const&);
237 typedef basic_stringstream<_CharT, _Traits> _Self;
    [all...]
_messages_facets.h 141 typedef messages_byname<char> _Self;
143 messages_byname(_Self const&);
144 _Self& operator = (_Self const&);
169 typedef messages_byname<wchar_t> _Self;
171 messages_byname(_Self const&);
172 _Self& operator = (_Self const&);
_string.h 128 typedef basic_string<_CharT, _Traits, _Alloc> _Self;
180 basic_string(const _Self&);
183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
186 basic_string(const _Self& __s, size_type __pos)
193 basic_string(const _Self& __s, size_type __pos, size_type __n)
201 basic_string(const _Self& __s, size_type __pos, size_type __n,
253 basic_string(__move_source<_Self> src)
347 _Self& operator=(const _Self& __s) {
353 _Self& operator=(const _CharT* __s)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iterator.h 55 typedef reverse_iterator<_Iterator> _Self;
65 reverse_iterator(const _Self& __x) : current(__x.current) {}
66 _Self& operator = (const _Self& __x) { current = __x.base(); return *this; }
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
80 _Self& operator++() {
84 _Self operator++(int) {
85 _Self __tmp = *this;
89 _Self& operator--() {
93 _Self operator--(int)
    [all...]
_istream.h 64 typedef basic_istream<_CharT, _Traits> _Self;
68 basic_istream(_Self const&);
69 _Self& operator = (_Self const&);
83 typedef _Self& (_STLP_CALL *__istream_fn)(_Self&);
96 _Self& operator>> (__istream_fn __f) { return __f(*this); }
97 _Self& operator>> (__ios_fn __f) { __f(*this); return *this; }
98 _Self& operator>> (__ios_base_fn __f) { __f(*this); return *this; }
101 _Self& operator>> (short& __val)
    [all...]
_ostream.h 54 typedef basic_ostream<_CharT, _Traits> _Self;
58 basic_ostream(_Self const&);
59 _Self& operator = (_Self const&);
77 typedef _Self& (_STLP_CALL *__ostream_fn)(_Self&);
78 _Self& operator<< (__ostream_fn __f) { return __f(*this); }
79 _Self & operator<< (__ios_base_fn __f) { __f(*this); return *this; }
80 _Self& operator<< (__ios_fn __ff) { __ff(*this); return *this; }
96 _Self& put(char_type __c)
    [all...]
_stream_iterator.h 96 typedef istream_iterator< __ISI_TMPL_ARGUMENTS > _Self;
120 _Self& operator++() {
124 _Self operator++(int) {
125 _Self __tmp = *this;
130 bool _M_equal(const _Self& __x) const {
147 _STLP_MUTABLE(_Self, _M_ok) = ((_M_stream != 0) && !_M_stream->fail());
149 *_M_stream >> _STLP_MUTABLE(_Self, _M_value);
150 _STLP_MUTABLE(_Self, _M_ok) = !_M_stream->fail();
152 _STLP_MUTABLE(_Self, _M_read_done) = true;
166 typedef ostream_iterator<_TpP> _Self;
    [all...]
_iterator_old.h 66 Reference__, _Distance> _Self;
67 // friend inline bool operator== _STLP_NULL_TMPL_ARGS (const _Self& x, const _Self& y);
92 _Self& operator++() {
96 _Self operator++(int) {
97 _Self __tmp = *this;
101 _Self& operator--() {
105 _Self operator--(int) {
106 _Self __tmp = *this;
161 typedef reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance> _Self;
    [all...]
_auto_ptr.h 43 typedef auto_ptr_ref<_Tp> _Self;
44 _Self& operator = (_Self const&);
51 typedef auto_ptr<_Tp> _Self;
100 auto_ptr(_Self& __r) _STLP_NOTHROW { this->__set(__r.release()); }
102 _Self& operator=(_Self& __r) _STLP_NOTHROW {
112 _Self& operator=(auto_ptr_ref<_Tp> __r) _STLP_NOTHROW {
_numpunct.h 129 typedef numpunct_byname<char> _Self;
130 numpunct_byname(_Self const&);
131 _Self& operator = (_Self const&);
160 typedef numpunct_byname<wchar_t> _Self;
161 numpunct_byname(_Self const&);
162 _Self& operator = (_Self const&);
_complex.h 38 typedef complex<_Tp> _Self;
46 complex(const _Self& __z)
49 _Self& operator=(const _Self& __z) {
61 _Self& operator=(const complex<_Tp2>& __z) {
74 _Self& operator= (const value_type& __x) {
79 _Self& operator+= (const value_type& __x) {
83 _Self& operator-= (const value_type& __x) {
87 _Self& operator*= (const value_type& __x) {
92 _Self& operator/= (const value_type& __x)
    [all...]
_string_workaround.h 34 typedef basic_string<_CharT, _Traits, _Alloc> _Self;
55 basic_string(const _Self& __s)
58 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
75 basic_string(__move_source<_Self> src)
97 _Self& operator=(const _Self& __s) {
102 _Self& operator=(const _CharT* __s) {
107 _Self& operator=(_CharT __c) {
148 _Self& operator+=(const _Self& __s)
    [all...]
_sstream.h 64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self;
148 typedef basic_istringstream<_CharT, _Traits> _Self;
150 basic_istringstream(_Self const&);
151 _Self& operator = (_Self const&);
192 typedef basic_ostringstream<_CharT, _Traits> _Self;
194 basic_ostringstream(_Self const&);
195 _Self& operator = (_Self const&);
237 typedef basic_stringstream<_CharT, _Traits> _Self;
    [all...]
_messages_facets.h 141 typedef messages_byname<char> _Self;
143 messages_byname(_Self const&);
144 _Self& operator = (_Self const&);
169 typedef messages_byname<wchar_t> _Self;
171 messages_byname(_Self const&);
172 _Self& operator = (_Self const&);
  /external/stlport/stlport/stl/debug/
_string.h 55 typedef basic_string<_CharT, _Traits, _Alloc> _Self;
97 basic_string(const _Self& __s)
101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
121 basic_string(__move_source<_Self> src)
165 _Self& operator=(const _Self& __s) {
172 _Self& operator=(const _CharT* __s) {
178 _Self& operator=(_CharT __c) {
234 _Self& operator+=(const _Self& __s) { return append(__s);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 55 typedef basic_string<_CharT, _Traits, _Alloc> _Self;
97 basic_string(const _Self& __s)
101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
121 basic_string(__move_source<_Self> src)
165 _Self& operator=(const _Self& __s) {
172 _Self& operator=(const _CharT* __s) {
178 _Self& operator=(_CharT __c) {
234 _Self& operator+=(const _Self& __s) { return append(__s);
    [all...]

Completed in 289 milliseconds

1 2 3 4 5