Searched refs:_Self (Results 26 - 50 of 65) sorted by relevance

123

/external/stlport/stlport/stl/
H A D_time_facets.h215 typedef time_get_byname<_Ch, _InIt> _Self; typedef in class:time_get_byname
217 time_get_byname(_Self const&);
218 _Self& operator = (_Self const&);
303 typedef time_put_byname<_Ch, _OutIt> _Self; typedef in class:time_put_byname
305 time_put_byname(_Self const&);
306 _Self& operator = (_Self const&);
H A D_list.h102 typedef _List_iterator<_Tp, _Traits> _Self; typedef in struct:_List_iterator
122 _Self& operator++() {
126 _Self operator++(int) {
127 _Self __tmp = *this;
131 _Self& operator--() {
135 _Self operator--(int) {
136 _Self __tmp = *this;
179 typedef _List_base<_Tp, _Alloc> _Self; typedef in class:_List_base
192 _List_base(__move_source<_Self> src) :
259 typedef list<_Tp, _Alloc> _Self; typedef in class:list
[all...]
H A D_map.h49 typedef map<_Key, _Tp, _Compare, _Alloc> _Self; typedef in class:map
146 map(const _Self& __x) : _M_t(__x._M_t) {}
149 map(__move_source<_Self> src)
153 _Self& operator=(const _Self& __x) {
182 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
184 void _M_swap_workaround(_Self& __x) { swap(__x); }
242 typedef multimap<_Key, _Tp, _Compare, _Alloc> _Self; typedef in class:multimap
331 multimap(const _Self& __x) : _M_t(__x._M_t) {}
334 multimap(__move_source<_Self> sr
[all...]
H A D_set.h51 typedef set<_Key, _Compare, _Alloc> _Self; typedef in class:set
134 set(const _Self& __x) : _M_t(__x._M_t) {}
137 set(__move_source<_Self> src)
141 _Self& operator=(const _Self& __x) {
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
221 typedef multiset<_Key, _Compare, _Alloc> _Self; typedef in class:multiset
306 multiset(const _Self& __x) : _M_t(__x._M_t) {}
307 _Self
[all...]
H A D_unordered_map.h43 typedef unordered_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self; typedef in class:unordered_map
89 unordered_map(__move_source<_Self> src)
117 _Self& operator = (const _Self& __other)
123 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); }
125 void _M_swap_workaround(_Self& __x) { swap(__x); }
191 bool operator==(const _Self&) const;
211 typedef unordered_multimap<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self; typedef in class:unordered_multimap
257 unordered_multimap(__move_source<_Self> src)
285 _Self
[all...]
H A D_bvector.h172 typedef _Bit_iter<_Ref, _Ptr> _Self; typedef in struct:_Bit_iter
184 // _Self& operator = (const _Bit_iter<_Bit_reference, _Bit_reference*>& __x)
190 _Self& operator++() {
194 _Self operator++(int) {
195 _Self __tmp = *this;
199 _Self& operator--() {
203 _Self operator--(int) {
204 _Self __tmp = *this;
208 _Self& operator+=(difference_type __i) {
212 _Self
269 typedef _Bvector_base<_Alloc> _Self; typedef in class:_Bvector_base
364 typedef __BVECTOR_QUALIFIED _Self; typedef in class:__BVECTOR_QUALIFIED
[all...]
H A D_istreambuf_iterator.h93 _STLP_MUTABLE(_Self, _M_c) = traits_type::to_char_type(__c);
94 _STLP_MUTABLE(_Self, _M_eof) = traits_type::eq_int_type(__c, traits_type::eof());
95 _STLP_MUTABLE(_Self, _M_have_c) = true;
H A D_unordered_set.h42 typedef unordered_set<_Value, _HashFcn, _EqualKey, _Alloc> _Self; typedef in class:unordered_set
83 unordered_set(__move_source<_Self> src)
111 _Self& operator = (const _Self& __other)
117 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); }
119 void _M_swap_workaround(_Self& __x) { swap(__x); }
192 typedef unordered_multiset<_Value, _HashFcn, _EqualKey, _Alloc> _Self; typedef in class:unordered_multiset
233 unordered_multiset(__move_source<_Self> src)
261 _Self& operator = (const _Self
[all...]
H A D_deque.h99 typedef _Deque_iterator_base< _Tp > _Self; typedef in struct:_Deque_iterator_base
119 difference_type _M_subtract(const _Self& __x) const {
172 typedef _Deque_iterator<_Tp, _Traits> _Self; typedef in struct:_Deque_iterator
194 _Self& operator++() { this->_M_increment(); return *this; }
195 _Self operator++(int) {
196 _Self __tmp = *this;
201 _Self& operator--() { this->_M_decrement(); return *this; }
202 _Self operator--(int) {
203 _Self __tmp = *this;
208 _Self
341 typedef _Deque_base<_Tp, _Alloc> _Self; typedef in class:_Deque_base
406 typedef deque<_Tp, _Alloc> _Self; typedef in class:deque
[all...]
H A D_iostream_string.h104 typedef __basic_iostring<_CharT> _Self; typedef in struct:__basic_iostring
111 _Self& operator=(const _CharT* __s) {
H A D_slist.h89 typedef _Slist_iterator<_Tp, _Traits> _Self; typedef in class:_Slist_iterator
106 _Self& operator++() {
110 _Self operator++(int) {
111 _Self __tmp = *this;
152 typedef _Slist_base<_Tp, _Alloc> _Self; typedef in class:_Slist_base
165 _Slist_base(__move_source<_Self> src) :
227 typedef slist<_Tp,_Alloc> _Self; typedef in class:slist
329 slist(const _Self& __x)
334 slist(__move_source<_Self> src)
338 _Self
[all...]
H A D_fstream.h159 typedef basic_filebuf<_CharT, _Traits> _Self; typedef in class:basic_filebuf
168 _Self* open(const char* __s, ios_base::openmode __m) {
174 _Self* open(const char* __s, ios_base::openmode __m,
181 _Self* open(int __id, ios_base::openmode _Init_mode = ios_base::__default_mode) {
186 _Self* open(_STLP_fd __id, ios_base::openmode _Init_mode = ios_base::__default_mode) {
193 _Self* _M_open(int __id, ios_base::openmode _Init_mode = ios_base::__default_mode) {
197 _Self* close();
681 typedef basic_fstream<_CharT, _Traits> _Self; typedef in class:basic_fstream
683 basic_fstream(_Self const&);
684 _Self
[all...]
H A D_hashtable.h112 typedef _Ht_iterator<_BaseIte,_Traits> _Self; typedef in struct:_Ht_iterator
134 _Self& operator++() {
138 _Self operator++(int) {
139 _Self __tmp = *this;
226 typedef hashtable<_Val, _Key, _HF, _Traits, _ExK, _EqK, _All> _Self; typedef in class:hashtable
332 hashtable(const _Self& __ht)
342 hashtable(__move_source<_Self> src)
351 _Self& operator= (const _Self& __ht) {
367 void swap(_Self
[all...]
H A D_string_base.h42 typedef _String_base<_Tp, _Alloc> _Self; typedef in class:_String_base
128 void _M_move_src (_Self &src) {
144 _String_base(__move_source<_Self> src)
168 void _M_swap(_Self &__s) {
H A D_tree.h150 typedef _Rb_tree_iterator<_Value, _Traits> _Self; typedef in struct:_Rb_tree_iterator
176 _Self& operator++() {
180 _Self operator++(int) {
181 _Self __tmp = *this;
186 _Self& operator--() {
190 _Self operator--(int) {
191 _Self __tmp = *this;
239 typedef _Rb_tree_base<_Tp, _Alloc> _Self; typedef in class:_Rb_tree_base
255 _Rb_tree_base(__move_source<_Self> src) :
294 typedef _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc> _Self; typedef in class:_Rb_tree
[all...]
/external/llvm/include/llvm/Analysis/
H A DIntervalIterator.h97 typedef IntervalIterator<NodeTy, OrigContainer_t> _Self; typedef in class:llvm::IntervalIterator
123 inline bool operator==(const _Self& x) const { return IntStack == x.IntStack;}
124 inline bool operator!=(const _Self& x) const { return !operator==(x); }
131 _Self& operator++() { // Preincrement
153 inline _Self operator++(int) { // Postincrement
154 _Self tmp = *this; ++*this; return tmp;
/external/stlport/stlport/stl/pointers/
H A D_slist.h63 typedef slist<_Tp, _Alloc> _Self; typedef in class:slist
136 slist(const _Self& __x) : _M_impl(__x._M_impl) {}
139 slist(__move_source<_Self> src)
143 _Self& operator= (const _Self& __x) { _M_impl = __x._M_impl; return *this; }
199 void swap(_Self& __x) { _M_impl.swap(__x._M_impl); }
201 void _M_swap_workaround(_Self& __x) { swap(__x); }
365 void splice_after(iterator __pos, _Self& __x,
369 void splice_after(iterator __pos, _Self& __x, iterator __prev)
371 void splice_after(iterator __pos, _Self
[all...]
H A D_vector.h56 typedef vector<_Tp, _Alloc> _Self; typedef in class:vector
123 vector(const _Self& __x)
127 explicit vector(__move_source<_Self> src)
151 _Self& operator=(const _Self& __x) { _M_impl = __x._M_impl; return *this; }
189 void swap(_Self& __x) { _M_impl.swap(__x._M_impl); }
191 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_set.h73 typedef set<_Key, _Compare, _Alloc> _Self; typedef in class:set
193 set(const _Self& __x) : _M_t(__x._M_t) {}
196 set(__move_source<_Self> src)
200 _Self& operator=(const _Self& __x) {
222 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
224 void _M_swap_workaround(_Self& __x) { swap(__x); }
320 typedef multiset<_Key, _Compare, _Alloc> _Self; typedef in class:multiset
445 multiset(const _Self& __x)
448 _Self
[all...]
/external/stlport/stlport/stl/debug/
H A D_list.h67 typedef list<_Tp, _Alloc> _Self; typedef in class:list
108 list(__move_source<_Self> src)
148 list(const _Self& __x) :
152 _Self& operator=(const _Self& __x) {
197 void swap(_Self& __x) {
202 void _M_swap_workaround(_Self& __x) { swap(__x); }
358 void splice(iterator __pos, _Self& __x) {
371 void splice(iterator __pos, _Self& __x, iterator __i) {
385 void splice(iterator __pos, _Self
[all...]
H A D_string_sum_methods.h51 _Base& _M_append_fast(_Self const& __s, _Base &__str)
73 _Base& _M_append_fast_pos(_Self const& __s, _Base &__str, size_type __pos, size_type __n)
99 _Self& _M_append_sum (_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
106 _Self& _M_append_sum_pos (_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
H A D_deque.h60 typedef deque<_Tp,_Alloc> _Self; typedef in class:deque
131 deque(const _Self& __x) :
148 deque(__move_source<_Self> src)
191 _Self& operator=(const _Self& __x) {
203 void swap(_Self& __x) {
208 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_vector.h109 typedef vector<_Tp, _Alloc> _Self; typedef in class:vector
190 vector(const _Self& __x)
194 vector(__move_source<_Self> src)
234 _Self& operator=(const _Self& __x) {
265 void swap(_Self& __x) {
270 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_slist.h84 typedef slist<_Tp,_Alloc> _Self; typedef in class:slist
123 slist(__move_source<_Self> src)
165 slist(const _Self& __x) :
169 _Self& operator= (const _Self& __x) {
203 void swap(_Self& __x) {
208 void _M_swap_workaround(_Self& __x) { swap(__x); }
402 void splice_after(iterator __pos, _Self& __x) {
417 void splice_after(iterator __pos, _Self& __x, iterator __prev) {
434 void splice_after(iterator __pos, _Self
[all...]
/external/llvm/include/llvm/ADT/
H A DSTLExtras.h218 typedef mapped_iterator<RootIt, UnaryFunc> _Self; typedef in class:llvm::mapped_iterator
230 _Self& operator++() { ++current; return *this; }
231 _Self& operator--() { --current; return *this; }
232 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
233 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; }
234 _Self operator+ (difference_type n) const {
235 return _Self(current + n, Fn);
237 _Self
[all...]

Completed in 407 milliseconds

123