/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/ |
_slist.h | 84 typedef slist<_Tp,_Alloc> _Self; 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& __x [all...] |
_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...] |
_tree.h | 95 typedef _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc> _Self; 127 _Rb_tree(const _Self& __x) 131 _Rb_tree(__move_source<_Self> src): 144 _Self& operator=(const _Self& __x) { 172 void swap(_Self& __t) {
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_list.h | 70 typedef list<_Tp, _Alloc> _Self; 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& __x, iterator __first, iterator __last [all...] |
_slist.h | 63 typedef slist<_Tp, _Alloc> _Self; 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& __x [all...] |
_vector.h | 56 typedef vector<_Tp, _Alloc> _Self; 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); }
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/debug/ |
safe_iterator.h | 65 typedef _Safe_iterator _Self;
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_hash_map.h | 51 typedef hash_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self; 98 hash_map(__move_source<_Self> src) 169 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } 171 void _M_swap_workaround(_Self& __x) { swap(__x); } 242 typedef hash_multimap<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self; 289 hash_multimap(__move_source<_Self> src) 360 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } 362 void _M_swap_workaround(_Self& __x) { swap(__x); }
|
_hash_set.h | 50 typedef hash_set<_Value, _HashFcn, _EqualKey, _Alloc> _Self; 101 hash_set(__move_source<_Self> src) 170 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } 172 void _M_swap_workaround(_Self& __x) { swap(__x); } 236 typedef hash_multiset<_Value, _HashFcn, _EqualKey, _Alloc> _Self; 282 hash_multiset(__move_source<_Self> src) 352 void swap(_Self& hs) { _M_ht.swap(hs._M_ht); } 354 void _M_swap_workaround(_Self& __x) { swap(__x); }
|
_map.h | 49 typedef map<_Key, _Tp, _Compare, _Alloc> _Self; 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; 331 multimap(const _Self& __x) : _M_t(__x._M_t) {} 334 multimap(__move_source<_Self> src [all...] |
_set.h | 51 typedef set<_Key, _Compare, _Alloc> _Self; 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; 306 multiset(const _Self& __x) : _M_t(__x._M_t) {} 307 _Self& operator=(const _Self& __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...] |
_time_facets.h | 215 typedef time_get_byname<_Ch, _InIt> _Self; 217 time_get_byname(_Self const&); 218 _Self& operator = (_Self const&); 303 typedef time_put_byname<_Ch, _OutIt> _Self; 305 time_put_byname(_Self const&); 306 _Self& operator = (_Self const&);
|
_unordered_map.h | 43 typedef unordered_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self; 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; 257 unordered_multimap(__move_source<_Self> src) 285 _Self& operator = (const _Self& __other [all...] |
_unordered_set.h | 42 typedef unordered_set<_Value, _HashFcn, _EqualKey, _Alloc> _Self; 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; 233 unordered_multiset(__move_source<_Self> src) 261 _Self& operator = (const _Self& __other [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/ |
_hashtable.h | 92 typedef hashtable<_Val, _Key, _HF, _Traits, _ExK, _EqK, _All> _Self; 149 hashtable(const _Self& __ht) 154 hashtable(__move_source<_Self> src) 169 _Self& operator=(const _Self& __ht) { 178 void swap(_Self& __ht) {
|
_iterator.h | 210 typedef _DBG_iter<_Container, _Traits> _Self; 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 operator--(int) [all...] |
_list.h | 67 typedef list<_Tp, _Alloc> _Self; 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& __x, iterator __first, iterator __last) [all...] |
_slist.h | 84 typedef slist<_Tp,_Alloc> _Self; 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& __x [all...] |
_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...] |
_tree.h | 95 typedef _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc> _Self; 127 _Rb_tree(const _Self& __x) 131 _Rb_tree(__move_source<_Self> src): 144 _Self& operator=(const _Self& __x) { 172 void swap(_Self& __t) {
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_list.h | 70 typedef list<_Tp, _Alloc> _Self; 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& __x, iterator __first, iterator __last [all...] |
_slist.h | 63 typedef slist<_Tp, _Alloc> _Self; 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& __x [all...] |
_vector.h | 56 typedef vector<_Tp, _Alloc> _Self; 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); }
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/debug/ |
safe_iterator.h | 65 typedef _Safe_iterator _Self;
|