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

123

/external/stlport/stlport/stl/
H A D_alloc.h476 typedef _STLP_alloc_proxy<_Value, _Tp, _MaybeReboundAlloc> _Self; typedef in class:_STLP_alloc_proxy
484 _STLP_alloc_proxy (__move_source<_Self> src) :
497 void _M_swap_alloc(_Self&, const __true_type& /*_IsStateless*/)
500 void _M_swap_alloc(_Self& __x, const __false_type& /*_IsStateless*/) {
507 void _M_swap_alloc(_Self& __x) {
520 void swap(_Self& __x) {
H A D_string_sum_methods.h51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf)
74 _CharT* _M_append_fast_pos(_Self const& __s, _CharT *__buf,
101 _Self& _M_append_sum (_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s) {
124 _Self& _M_append_sum_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
H A D_string_sum.h94 typedef __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDirection> _Self; typedef in class:__bstr_sum
123 typedef __bstr_sum<_CharT, _Traits, _Alloc, _Self, __bstr_wrapper<_CharT, _Traits, _Alloc>, __on_left> _BStrOnLeft;
126 typedef __bstr_sum<_CharT, _Traits, _Alloc, _Self, __cstr_wrapper<_CharT>, __on_left> _CStrOnLeft;
129 typedef __bstr_sum<_CharT, _Traits, _Alloc, _Self, __char_wrapper<_CharT>, __on_left> _CharOnLeft;
241 int compare(size_type __pos1, size_type __n1, const _Self& __s) const
243 int compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const
373 typedef __sum_storage_elem<_CharT, _Traits, _Alloc> _Self; typedef in struct:__sum_storage_elem
382 _STLP_MUTABLE(_Self, _M_storage) = __ref;
383 _STLP_MUTABLE(_Self, _M_init) = true;
H A D_vector.h60 typedef _Vector_base<_Tp, _Alloc> _Self; typedef in class:_Vector_base
78 _Vector_base(__move_source<_Self> src)
116 typedef vector<_Tp, _Alloc> _Self; typedef in class:vector
246 vector(const _Self& __x)
253 vector(__move_source<_Self> src)
306 _Self& operator=(const _Self& __x);
401 void swap(_Self& __x) {
407 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_hash_map.h51 typedef hash_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self; typedef in class:hash_map
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; typedef in class:hash_multimap
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); }
H A D_hash_set.h50 typedef hash_set<_Value, _HashFcn, _EqualKey, _Alloc> _Self; typedef in class:hash_set
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; typedef in class:hash_multiset
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); }
H A D_bitset.h212 typedef _Base_bitset<1UL> _Self; typedef in struct:_Base_bitset
238 void _M_do_and(const _Self& __x) { _M_w &= __x._M_w; }
239 void _M_do_or(const _Self& __x) { _M_w |= __x._M_w; }
240 void _M_do_xor(const _Self& __x) { _M_w ^= __x._M_w; }
247 bool _M_is_equal(const _Self& __x) const {
H A D_rope.c760 typedef _Rope_insert_char_consumer<_CharT,_Traits> _Self; typedef
764 _Self& operator = (_Self const&);
H A D_string.c233 _Self __str(__n, __c);
/external/stlport/stlport/stl/debug/
H A D_hashtable.h92 typedef hashtable<_Val, _Key, _HF, _Traits, _ExK, _EqK, _All> _Self; typedef in class:hashtable
149 hashtable(const _Self& __ht)
154 hashtable(__move_source<_Self> src)
169 _Self& operator=(const _Self& __ht) {
178 void swap(_Self& __ht) {
H A D_tree.h95 typedef _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc> _Self; typedef in class:_Rb_tree
127 _Rb_tree(const _Self& __x)
131 _Rb_tree(__move_source<_Self> src):
144 _Self& operator=(const _Self& __x) {
172 void swap(_Self& __t) {
/external/libcxxabi/src/Unwind/
H A DUnwindCursor.hpp624 typedef EHABISectionIterator _Self; typedef in struct:libunwind::EHABISectionIterator
633 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) {
634 return _Self(addressSpace, sects, 0);
636 static _Self end(A& addressSpace, const UnwindInfoSections& sects) {
637 return _Self(addressSpace, sects, sects.arm_section_length);
643 _Self& operator++() { ++_i; return *this; }
644 _Self& operator+=(size_t a) { _i += a; return *this; }
645 _Self& operator--() { assert(_i > 0); --_i; return *this; }
646 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
648 _Self operato
[all...]
/external/stlport/stlport/stl/pointers/
H A D_deque.h105 typedef deque<_Tp, _Alloc> _Self; typedef in class:deque
162 deque(const _Self& __x) : _M_impl(__x._M_impl) {}
216 deque(__move_source<_Self> src)
220 _Self& operator= (const _Self& __x) { _M_impl = __x._M_impl; return *this; }
222 void swap(_Self& __x) { _M_impl.swap(__x._M_impl); }
224 void _M_swap_workaround(_Self& __x) { swap(__x); }
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h657 typedef ImutAVLTreeGenericIterator<ImutInfo> _Self; typedef in class:llvm::ImutAVLTreeGenericIterator
698 inline bool operator==(const _Self& x) const {
702 inline bool operator!=(const _Self& x) const { return !operator==(x); }
704 _Self& operator++() {
730 _Self& operator--() {
763 typedef ImutAVLTreeInOrderIterator<ImutInfo> _Self; typedef in class:llvm::ImutAVLTreeInOrderIterator
771 inline bool operator==(const _Self& x) const {
775 inline bool operator!=(const _Self& x) const { return !operator==(x); }
780 inline _Self& operator++() {
788 inline _Self
[all...]
/external/stlport/stlport/stl/config/
H A Dfeatures.h773 #define __IMPORT_SUPER_COPY_ASSIGNMENT(__derived_name, _Self, _SUPER) \
775 _Self& operator=(const _Super& __x) { \
779 __derived_name(const _Self& __x) : _SUPER(__x) {} \
780 _Self& operator=(const _Self& __x) { \

Completed in 548 milliseconds

123