Home | History | Annotate | Download | only in profile

Lines Matching refs:__x

77       multiset(const multiset& __x)
78 : _Base(__x) { }
80 multiset(const _Base& __x)
81 : _Base(__x) { }
84 multiset(multiset&& __x)
85 : _Base(std::move(__x))
97 operator=(const multiset& __x)
99 *static_cast<_Base*>(this) = __x;
105 operator=(multiset&& __x)
110 this->swap(__x);
183 insert(const value_type& __x)
184 { return iterator(_Base::insert(__x)); }
188 insert(value_type&& __x)
189 { return iterator(_Base::insert(std::move(__x))); }
193 insert(const_iterator __position, const value_type& __x)
194 { return iterator(_Base::insert(__position, __x)); }
198 insert(const_iterator __position, value_type&& __x)
199 { return iterator(_Base::insert(__position, std::move(__x))); }
224 erase(const key_type& __x)
226 std::pair<iterator, iterator> __victims = this->equal_range(__x);
248 swap(multiset& __x)
249 { _Base::swap(__x); }
261 find(const key_type& __x)
262 { return iterator(_Base::find(__x)); }
267 find(const key_type& __x) const
268 { return const_iterator(_Base::find(__x)); }
273 lower_bound(const key_type& __x)
274 { return iterator(_Base::lower_bound(__x)); }
279 lower_bound(const key_type& __x) const
280 { return const_iterator(_Base::lower_bound(__x)); }
283 upper_bound(const key_type& __x)
284 { return iterator(_Base::upper_bound(__x)); }
289 upper_bound(const key_type& __x) const
290 { return const_iterator(_Base::upper_bound(__x)); }
293 equal_range(const key_type& __x)
297 _Base::equal_range(__x);
305 equal_range(const key_type& __x) const
309 _Base::equal_range(__x);
360 swap(multiset<_Key, _Compare, _Allocator>& __x,
362 { return __x.swap(__y); }