Home | History | Annotate | Download | only in stl

Lines Matching defs:__x

95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
103 insert(end(), __new_size - __len, __x);
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
108 if (this != &__x) {
111 const_iterator __first2 = __x.begin();
112 const_iterator __last2 = __x.end();
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
173 _Literator __first2 = __x.begin();
174 _Literator __last2 = __x.end();
175 if (__that.get_allocator() == __x.get_allocator()) {
201 __x.clear();