Home | History | Annotate | Download | only in unit

Lines Matching full:swap

52   //one. This is the case for the std::swap function.
148 void swap(StackAllocator &other) {
149 __STD swap(m_state, other.m_state);
155 void _M_swap_workaround(StackAllocator& __x) { swap(__x); }
185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b)
186 { __a.swap(__b); }
189 //with new StackAllocator instanciations associated swap overload should also be
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b)
192 { __a.swap(__b); }
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b)
194 { __a.swap(__b); }
195 inline void swap(StackAllocator<pair<const int, int> >& __a,
197 { __a.swap(__b); }