HomeSort by relevance Sort by last modified time
    Searched full:_self (Results 101 - 125 of 453) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_queue.h 70 typedef queue<_Tp> _Self;
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;
156 typedef priority_queue<_Tp, _Sequence, _Compare> _Self;
177 priority_queue(__move_source<_Self> src)
238 void _M_swap_workaround(_Self& __x) {
_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...]
_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...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_queue.h 70 typedef queue<_Tp> _Self;
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;
156 typedef priority_queue<_Tp, _Sequence, _Compare> _Self;
177 priority_queue(__move_source<_Self> src)
238 void _M_swap_workaround(_Self& __x) {
_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...]
_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...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_queue.h 70 typedef queue<_Tp> _Self;
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;
156 typedef priority_queue<_Tp, _Sequence, _Compare> _Self;
177 priority_queue(__move_source<_Self> src)
238 void _M_swap_workaround(_Self& __x) {
_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...]
_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...]
  /external/llvm/include/llvm/ADT/
PostOrderIterator.h 133 typedef po_iterator<GraphT, SetType, ExtStorage, GT> _Self;
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& x) const
    [all...]
STLExtras.h 91 typedef mapped_iterator<RootIt, UnaryFunc> _Self;
105 _Self& operator++() { ++current; return *this; }
106 _Self& operator--() { --current; return *this; }
107 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
108 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; }
109 _Self operator+ (difference_type n) const {
110 return _Self(current + n, Fn);
112 _Self& operator+= (difference_type n) { current += n; return *this;
    [all...]
  /external/stlport/stlport/stl/
_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...]
_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...]
_stack.h 58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
78 stack(__move_source<_Self> src)
90 void _M_swap_workaround(_Self& __x) {
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_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...]
_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...]
_stack.h 58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
78 stack(__move_source<_Self> src)
90 void _M_swap_workaround(_Self& __x) {
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_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...]
_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...]
  /external/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...]
  /ndk/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...]
  /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...]
  /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...]
  /prebuilts/ndk/7/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...]
  /prebuilts/ndk/8/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...]

Completed in 1771 milliseconds

1 2 3 45 6 7 8 91011>>