HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 201 - 225 of 565) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_bvector.h 45 _Bit_reference(unsigned int* __x, unsigned int __y)
46 : _M_p(__x), _M_mask(__y) {}
54 _Bit_reference& operator = (bool __x) {
55 if (__x) *_M_p |= _M_mask;
59 _Bit_reference& operator = (const _Bit_reference& __x) {
60 return *this = bool(__x);
62 bool operator == (const _Bit_reference& __x) const {
63 return bool(*this) == bool(__x);
65 bool operator < (const _Bit_reference& __x) const {
66 return !bool(*this) && bool(__x);
600 insert(end(), __n - size(), __x); local
674 _M_insert_aux(end(), __x); local
804 insert(end(), __new_size - size(), __x); local
    [all...]
_string_operators.h 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator());
89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator());
91 __result.append(__x);
98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator());
105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator())
    [all...]
_valarray.c 43 // Behavior is undefined if __x and *this have different sizes
45 valarray<_Tp>& valarray<_Tp>::operator=(const slice_array<_Tp>& __x) {
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
47 size_t __index = __x._M_slice.start();
49 __i < __x._M_slice.size();
50 ++__i, __index += __x._M_slice.stride())
51 (*this)[__i] = __x._M_array[__index];
84 // Behavior is undefined if __x and *this have different sizes, or if
85 // __x was constructed from a degenerate gslice.
87 valarray<_Tp>& valarray<_Tp>::operator=(const gslice_array<_Tp>& __x) {
    [all...]
_slist.h 72 _Slist_iterator_base(_Slist_node_base *__x) : _M_node(__x) {}
97 explicit _Slist_iterator(_Slist_node_base *__x) : _Slist_iterator_base(__x) {}
100 _Slist_iterator(const iterator& __x) : _Slist_iterator_base(__x._M_node) {}
209 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x,
250 _Node* _M_create_node(const value_type& __x = _Tp()) {
252 _Node* _M_create_node(const value_type& __x) {
256 _Copy_Construct(&__node->_M_data, __x);
574 __n, __x); local
651 _M_insert_after_fill(_STLP_PRIV _Sl_global_inst::__previous(&this->_M_head._M_data, __pos._M_node), __n, __x); local
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_bvector.h 45 _Bit_reference(unsigned int* __x, unsigned int __y)
46 : _M_p(__x), _M_mask(__y) {}
54 _Bit_reference& operator = (bool __x) {
55 if (__x) *_M_p |= _M_mask;
59 _Bit_reference& operator = (const _Bit_reference& __x) {
60 return *this = bool(__x);
62 bool operator == (const _Bit_reference& __x) const {
63 return bool(*this) == bool(__x);
65 bool operator < (const _Bit_reference& __x) const {
66 return !bool(*this) && bool(__x);
600 insert(end(), __n - size(), __x); local
674 _M_insert_aux(end(), __x); local
804 insert(end(), __new_size - size(), __x); local
    [all...]
_string_operators.h 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator());
89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator());
91 __result.append(__x);
98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator());
105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator())
    [all...]
_valarray.c 43 // Behavior is undefined if __x and *this have different sizes
45 valarray<_Tp>& valarray<_Tp>::operator=(const slice_array<_Tp>& __x) {
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
47 size_t __index = __x._M_slice.start();
49 __i < __x._M_slice.size();
50 ++__i, __index += __x._M_slice.stride())
51 (*this)[__i] = __x._M_array[__index];
84 // Behavior is undefined if __x and *this have different sizes, or if
85 // __x was constructed from a degenerate gslice.
87 valarray<_Tp>& valarray<_Tp>::operator=(const gslice_array<_Tp>& __x) {
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_vector.h 119 _Vector_base(_Vector_base&& __x)
120 : _M_impl(__x._M_get_Tp_allocator())
122 this->_M_impl._M_start = __x._M_impl._M_start;
123 this->_M_impl._M_finish = __x._M_impl._M_finish;
124 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
125 __x._M_impl._M_start = 0;
126 __x._M_impl._M_finish = 0;
127 __x._M_impl._M_end_of_storage = 0;
241 vector(const vector& __x)
242 : _Base(__x.size(), __x._M_get_Tp_allocator()
557 insert(end(), __new_size - size(), __x); local
757 _M_insert_aux(end(), __x); local
    [all...]
stl_deque.h 116 _Deque_iterator(_Tp* __x, _Map_pointer __y)
117 : _M_cur(__x), _M_first(*__y),
123 _Deque_iterator(const iterator& __x)
124 : _M_cur(__x._M_cur), _M_first(__x._M_first),
125 _M_last(__x._M_last), _M_node(__x._M_node) { }
235 operator==(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x,
237 { return __x._M_cur == __y._M_cur; }
242 operator==(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x,
    [all...]
stl_bvector.h 72 _Bit_reference(_Bit_type * __x, _Bit_type __y)
73 : _M_p(__x), _M_mask(__y) { }
81 operator=(bool __x)
83 if (__x)
91 operator=(const _Bit_reference& __x)
92 { return *this = bool(__x); }
95 operator==(const _Bit_reference& __x) const
96 { return bool(*this) == bool(__x); }
99 operator<(const _Bit_reference& __x) const
100 { return !bool(*this) && bool(__x); }
367 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
742 _M_insert_aux(end(), __x); local
828 insert(end(), __new_size - size(), __x); local
925 insert(end(), __n - size(), __x); local
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_vector.h 119 _Vector_base(_Vector_base&& __x)
120 : _M_impl(__x._M_get_Tp_allocator())
122 this->_M_impl._M_start = __x._M_impl._M_start;
123 this->_M_impl._M_finish = __x._M_impl._M_finish;
124 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
125 __x._M_impl._M_start = 0;
126 __x._M_impl._M_finish = 0;
127 __x._M_impl._M_end_of_storage = 0;
241 vector(const vector& __x)
242 : _Base(__x.size(), __x._M_get_Tp_allocator()
557 insert(end(), __new_size - size(), __x); local
757 _M_insert_aux(end(), __x); local
    [all...]
stl_deque.h 116 _Deque_iterator(_Tp* __x, _Map_pointer __y)
117 : _M_cur(__x), _M_first(*__y),
123 _Deque_iterator(const iterator& __x)
124 : _M_cur(__x._M_cur), _M_first(__x._M_first),
125 _M_last(__x._M_last), _M_node(__x._M_node) { }
235 operator==(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x,
237 { return __x._M_cur == __y._M_cur; }
242 operator==(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x,
    [all...]
stl_bvector.h 72 _Bit_reference(_Bit_type * __x, _Bit_type __y)
73 : _M_p(__x), _M_mask(__y) { }
81 operator=(bool __x)
83 if (__x)
91 operator=(const _Bit_reference& __x)
92 { return *this = bool(__x); }
95 operator==(const _Bit_reference& __x) const
96 { return bool(*this) == bool(__x); }
99 operator<(const _Bit_reference& __x) const
100 { return !bool(*this) && bool(__x); }
367 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
742 _M_insert_aux(end(), __x); local
828 insert(end(), __new_size - size(), __x); local
925 insert(end(), __n - size(), __x); local
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_vector.h 119 _Vector_base(_Vector_base&& __x)
120 : _M_impl(__x._M_get_Tp_allocator())
122 this->_M_impl._M_start = __x._M_impl._M_start;
123 this->_M_impl._M_finish = __x._M_impl._M_finish;
124 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
125 __x._M_impl._M_start = 0;
126 __x._M_impl._M_finish = 0;
127 __x._M_impl._M_end_of_storage = 0;
241 vector(const vector& __x)
242 : _Base(__x.size(), __x._M_get_Tp_allocator()
557 insert(end(), __new_size - size(), __x); local
757 _M_insert_aux(end(), __x); local
    [all...]
stl_deque.h 116 _Deque_iterator(_Tp* __x, _Map_pointer __y)
117 : _M_cur(__x), _M_first(*__y),
123 _Deque_iterator(const iterator& __x)
124 : _M_cur(__x._M_cur), _M_first(__x._M_first),
125 _M_last(__x._M_last), _M_node(__x._M_node) { }
235 operator==(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x,
237 { return __x._M_cur == __y._M_cur; }
242 operator==(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x,
    [all...]
stl_bvector.h 72 _Bit_reference(_Bit_type * __x, _Bit_type __y)
73 : _M_p(__x), _M_mask(__y) { }
81 operator=(bool __x)
83 if (__x)
91 operator=(const _Bit_reference& __x)
92 { return *this = bool(__x); }
95 operator==(const _Bit_reference& __x) const
96 { return bool(*this) == bool(__x); }
99 operator<(const _Bit_reference& __x) const
100 { return !bool(*this) && bool(__x); }
367 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
742 _M_insert_aux(end(), __x); local
828 insert(end(), __new_size - size(), __x); local
925 insert(end(), __n - size(), __x); local
    [all...]
  /external/stlport/stlport/stl/
_string_operators.h 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator());
89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator());
91 __result.append(__x);
98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator());
105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator())
    [all...]
_valarray.c 43 // Behavior is undefined if __x and *this have different sizes
45 valarray<_Tp>& valarray<_Tp>::operator=(const slice_array<_Tp>& __x) {
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
47 size_t __index = __x._M_slice.start();
49 __i < __x._M_slice.size();
50 ++__i, __index += __x._M_slice.stride())
51 (*this)[__i] = __x._M_array[__index];
84 // Behavior is undefined if __x and *this have different sizes, or if
85 // __x was constructed from a degenerate gslice.
87 valarray<_Tp>& valarray<_Tp>::operator=(const gslice_array<_Tp>& __x) {
    [all...]
_slist.h 72 _Slist_iterator_base(_Slist_node_base *__x) : _M_node(__x) {}
97 explicit _Slist_iterator(_Slist_node_base *__x) : _Slist_iterator_base(__x) {}
100 _Slist_iterator(const iterator& __x) : _Slist_iterator_base(__x._M_node) {}
209 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x,
250 _Node* _M_create_node(const value_type& __x = _Tp()) {
252 _Node* _M_create_node(const value_type& __x) {
256 _Copy_Construct(&__node->_M_data, __x);
574 __n, __x); local
651 _M_insert_after_fill(_STLP_PRIV _Sl_global_inst::__previous(&this->_M_head._M_data, __pos._M_node), __n, __x); local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_operators.h 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator());
89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator());
91 __result.append(__x);
98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator());
105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator())
    [all...]
_valarray.c 43 // Behavior is undefined if __x and *this have different sizes
45 valarray<_Tp>& valarray<_Tp>::operator=(const slice_array<_Tp>& __x) {
46 _STLP_ASSERT(__x._M_slice.size() == this->size())
47 size_t __index = __x._M_slice.start();
49 __i < __x._M_slice.size();
50 ++__i, __index += __x._M_slice.stride())
51 (*this)[__i] = __x._M_array[__index];
84 // Behavior is undefined if __x and *this have different sizes, or if
85 // __x was constructed from a degenerate gslice.
87 valarray<_Tp>& valarray<_Tp>::operator=(const gslice_array<_Tp>& __x) {
    [all...]
_slist.h 72 _Slist_iterator_base(_Slist_node_base *__x) : _M_node(__x) {}
97 explicit _Slist_iterator(_Slist_node_base *__x) : _Slist_iterator_base(__x) {}
100 _Slist_iterator(const iterator& __x) : _Slist_iterator_base(__x._M_node) {}
209 void _Slist_merge(slist<_Tp, _Alloc>& __that, slist<_Tp, _Alloc>& __x,
250 _Node* _M_create_node(const value_type& __x = _Tp()) {
252 _Node* _M_create_node(const value_type& __x) {
256 _Copy_Construct(&__node->_M_data, __x);
574 __n, __x); local
651 _M_insert_after_fill(_STLP_PRIV _Sl_global_inst::__previous(&this->_M_head._M_data, __pos._M_node), __n, __x); local
    [all...]
  /external/stlport/stlport/stl/debug/
_slist.h 111 explicit slist(size_type __n, const value_type& __x = _Tp(),
113 slist(size_type __n, const value_type& __x,
116 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
165 slist(const _Self& __x) :
166 _ConstructCheck(__x),
167 _M_non_dbg_impl(__x._M_non_dbg_impl), _M_iter_list(&_M_non_dbg_impl) {}
169 _Self& operator= (const _Self& __x) {
170 if (this != &__x) {
172 _M_non_dbg_impl = __x._M_non_dbg_impl;
203 void swap(_Self& __x) {
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_slist.h 111 explicit slist(size_type __n, const value_type& __x = _Tp(),
113 slist(size_type __n, const value_type& __x,
116 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
165 slist(const _Self& __x) :
166 _ConstructCheck(__x),
167 _M_non_dbg_impl(__x._M_non_dbg_impl), _M_iter_list(&_M_non_dbg_impl) {}
169 _Self& operator= (const _Self& __x) {
170 if (this != &__x) {
172 _M_non_dbg_impl = __x._M_non_dbg_impl;
203 void swap(_Self& __x) {
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/debug/
_slist.h 111 explicit slist(size_type __n, const value_type& __x = _Tp(),
113 slist(size_type __n, const value_type& __x,
116 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
165 slist(const _Self& __x) :
166 _ConstructCheck(__x),
167 _M_non_dbg_impl(__x._M_non_dbg_impl), _M_iter_list(&_M_non_dbg_impl) {}
169 _Self& operator= (const _Self& __x) {
170 if (this != &__x) {
172 _M_non_dbg_impl = __x._M_non_dbg_impl;
203 void swap(_Self& __x) {
    [all...]

Completed in 342 milliseconds

1 2 3 4 5 6 7 891011>>