Searched refs:_Self (Results 1 - 25 of 65) sorted by relevance

123

/external/stlport/stlport/stl/
H A D_istream.h64 typedef basic_istream<_CharT, _Traits> _Self; typedef in class:basic_istream
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
185 typedef _Isentry<_CharT, _Traits> _Self; typedef in class:_Isentry
188 typedef sentry _Self; typedef in class:_Isentry::sentry
215 sentry(const _Self&) argument
216 operator =(const _Self&) argument
[all...]
H A D_iterator.h55 typedef reverse_iterator<_Iterator> _Self; typedef in class:reverse_iterator
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 operato
163 typedef back_insert_iterator<_Container> _Self; typedef in class:back_insert_iterator
193 typedef front_insert_iterator<_Container> _Self; typedef in class:front_insert_iterator
222 typedef insert_iterator<_Container> _Self; typedef in class:insert_iterator
[all...]
H A D_ostream.h54 typedef basic_ostream<_CharT, _Traits> _Self; typedef in class:basic_ostream
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
170 typedef _Osentry<_CharT, _Traits> _Self; typedef in class:_Osentry
173 typedef sentry _Self; typedef in class:_Osentry::sentry
196 operator =(const _Self&) argument
[all...]
H A D_iterator_old.h66 Reference__, _Distance> _Self; typedef in class:reverse_bidirectional_iterator
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; typedef in class:reverse_iterator
[all...]
H A D_string_workaround.h34 typedef basic_string<_CharT, _Traits, _Alloc> _Self; typedef in class:basic_string
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
[all...]
H A D_stream_iterator.h96 typedef istream_iterator< __ISI_TMPL_ARGUMENTS > _Self; typedef in class:istream_iterator
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; typedef in class:ostream_iterator
[all...]
H A D_complex.h38 typedef complex<_Tp> _Self; typedef in struct:complex
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
182 typedef complex<float> _Self; typedef in struct:complex
320 typedef complex<double> _Self; typedef in struct:complex
460 typedef complex<long double> _Self; typedef in struct:complex
[all...]
H A D_auto_ptr.h43 typedef auto_ptr_ref<_Tp> _Self; typedef in class:auto_ptr_ref
44 _Self& operator = (_Self const&);
51 typedef auto_ptr<_Tp> _Self; typedef in class:auto_ptr
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 {
H A D_messages_facets.h141 typedef messages_byname<char> _Self; typedef in class:messages_byname
143 messages_byname(_Self const&);
144 _Self& operator = (_Self const&);
169 typedef messages_byname<wchar_t> _Self; typedef in class:messages_byname
171 messages_byname(_Self const&);
172 _Self& operator = (_Self const&);
H A D_numpunct.h129 typedef numpunct_byname<char> _Self; typedef in class:numpunct_byname
130 numpunct_byname(_Self const&);
131 _Self& operator = (_Self const&);
160 typedef numpunct_byname<wchar_t> _Self; typedef in class:numpunct_byname
161 numpunct_byname(_Self const&);
162 _Self& operator = (_Self const&);
H A D_string.h128 typedef basic_string<_CharT, _Traits, _Alloc> _Self; typedef in class:basic_string
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
[all...]
H A D_sstream.h64 typedef basic_stringbuf<_CharT, _Traits, _Alloc> _Self; typedef in class:basic_stringbuf
148 typedef basic_istringstream<_CharT, _Traits> _Self; typedef in class:basic_istringstream
150 basic_istringstream(_Self const&);
151 _Self& operator = (_Self const&);
192 typedef basic_ostringstream<_CharT, _Traits> _Self; typedef in class:basic_ostringstream
194 basic_ostringstream(_Self const&);
195 _Self& operator = (_Self const&);
237 typedef basic_stringstream<_CharT, _Traits> _Self; typedef in class:basic_stringstream
[all...]
H A D_monetary.h273 typedef moneypunct_byname<char, true> _Self; typedef in class:moneypunct_byname
275 moneypunct_byname(_Self const&);
276 _Self& operator = (_Self const&);
306 typedef moneypunct_byname<char, false> _Self; typedef in class:moneypunct_byname
308 moneypunct_byname(_Self const&);
309 _Self& operator = (_Self const&);
340 typedef moneypunct_byname<wchar_t, true> _Self; typedef in class:moneypunct_byname
342 moneypunct_byname(_Self cons
373 typedef moneypunct_byname<wchar_t, false> _Self; typedef in class:moneypunct_byname
[all...]
H A D_stack.h58 typedef stack<_Tp> _Self; typedef in class:stack
60 typedef stack<_Tp, _Sequence> _Self;
78 stack(__move_source<_Self> src)
90 void _M_swap_workaround(_Self& __x) {
H A D_rope.h202 > _Self; typedef in class:sequence_buffer
204 > _Self;
210 typedef sequence_buffer<_Sequence, _Buf_sz, _V> _Self;
223 sequence_buffer(const _Self& __x) {
228 sequence_buffer(_Self& __x) {
234 _Self& operator= (_Self& __x) {
240 _Self& operator= (const _Self& __x) {
271 _Self
330 typedef _Rope_RopeRep<_CharT, _Alloc> _Self; typedef in struct:_Rope_RopeRep
652 typedef _Rope_char_ref_proxy<_CharT, _Alloc> _Self; typedef in class:_Rope_char_ref_proxy
717 typedef _Rope_char_ptr_proxy<_CharT, _Alloc> _Self; typedef in class:_Rope_char_ptr_proxy
757 typedef _Rope_iterator_base<_CharT, _Alloc> _Self; typedef in class:_Rope_iterator_base
873 typedef _Rope_const_iterator<_CharT, _Alloc> _Self; typedef in class:_Rope_const_iterator
969 typedef _Rope_iterator<_CharT, _Alloc> _Self; typedef in class:_Rope_iterator
1090 typedef rope<_CharT,_Alloc> _Self; typedef in class:rope
[all...]
H A D_move_construct_fwk.h46 typedef __move_source<_Tp> _Self; typedef in class:__move_source
47 _Self& operator = (_Self const&);
H A D_ctype.h167 typedef ctype_byname<char> _Self; typedef in class:ctype_byname
168 ctype_byname(_Self const&);
169 _Self& operator = (_Self const&);
264 typedef ctype_byname<wchar_t> _Self; typedef in class:ctype_byname
265 ctype_byname(_Self const&);
266 _Self& operator = (_Self const&);
H A D_queue.h70 typedef queue<_Tp> _Self; typedef in class:queue
72 typedef queue<_Tp, _Sequence> _Self;
90 queue(__move_source<_Self> src)
105 void _M_swap_workaround(_Self& __x) {
154 typedef priority_queue<_Tp> _Self; typedef in class:priority_queue
156 typedef priority_queue<_Tp, _Sequence, _Compare> _Self;
177 priority_queue(__move_source<_Self> src)
238 void _M_swap_workaround(_Self& __x) {
/external/llvm/include/llvm/Analysis/
H A DConstantsScanner.h30 typedef constant_iterator _Self; typedef in class:llvm::constant_iterator
50 inline bool operator==(const _Self& x) const { return OpIdx == x.OpIdx &&
52 inline bool operator!=(const _Self& x) const { return !operator==(x); }
60 inline _Self& operator++() { // Preincrement implementation
76 inline _Self operator++(int) { // Postincrement
77 _Self tmp = *this; ++*this; return tmp;
/external/stlport/stlport/stl/debug/
H A D_string.h55 typedef basic_string<_CharT, _Traits, _Alloc> _Self; typedef in class:basic_string
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
[all...]
H A D_iterator.h210 typedef _DBG_iter<_Container, _Traits> _Self; typedef in struct:_DBG_iter
231 _DBG_iter(const _Self& __rhs) :
236 _Self& operator=(const _Nonconst_mid& __rhs) {
241 _Self& operator=(const _Self& __rhs) {
250 _Self& operator++() {
254 _Self operator++(int) {
255 _Self __tmp = *this;
259 _Self& operator--() {
263 _Self operato
[all...]
/external/llvm/include/llvm/ADT/
H A DDepthFirstIterator.h132 typedef df_iterator<GraphT, SetType, ExtStorage, GT> _Self; typedef in class:llvm::df_iterator
135 static inline _Self begin(const GraphT& G) {
136 return _Self(GT::getEntryNode(G));
138 static inline _Self end(const GraphT& G) { return _Self(); }
141 static inline _Self begin(const GraphT& G, SetType &S) {
142 return _Self(GT::getEntryNode(G), S);
144 static inline _Self end(const GraphT& G, SetType &S) { return _Self(S); }
146 inline bool operator==(const _Self
[all...]
H A DPostOrderIterator.h133 typedef po_iterator<GraphT, SetType, ExtStorage, GT> _Self; typedef in class:llvm::po_iterator
136 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); }
137 static inline _Self end (GraphT G) { return _Self(); }
139 static inline _Self begin(GraphT G, SetType &S) {
140 return _Self(GT::getEntryNode(G), S);
142 static inline _Self end (GraphT G, SetType &S) { return _Self(S); }
144 inline bool operator==(const _Self
[all...]
/external/stlport/stlport/stl/pointers/
H A D_list.h70 typedef list<_Tp, _Alloc> _Self; typedef in class:list
145 list(const _Self& __x) : _M_impl(__x._M_impl) {}
148 list(__move_source<_Self> src)
173 void swap(_Self &__x) { _M_impl.swap(__x._M_impl); }
175 void _M_swap_workaround(_Self& __x) { swap(__x); }
253 _Self& operator=(const _Self& __x)
293 void splice(iterator __pos, _Self& __x)
295 void splice(iterator __pos, _Self& __x, iterator __i)
297 void splice(iterator __pos, _Self
[all...]
H A D_tools.h349 typedef _IteWrapper<_StorageT, _ValueT, _Iterator> _Self; typedef in struct:_IteWrapper
350 typedef _Self _Ite;
359 _Self& operator= (_Self const& __rhs) {
364 _Self& operator++() {
369 _Self& operator--() {
374 _Self& operator += (difference_type __offset) {
378 difference_type operator -(_Self const& __other) const
381 bool operator == (_Self const& __other) const
384 bool operator != (_Self cons
[all...]

Completed in 281 milliseconds

123