Lines Matching refs:__u

491     unordered_set(const unordered_set& __u);
492 unordered_set(const unordered_set& __u, const allocator_type& __a);
495 unordered_set(unordered_set&& __u)
497 unordered_set(unordered_set&& __u, const allocator_type& __a);
522 unordered_set& operator=(const unordered_set& __u)
524 __table_ = __u.__table_;
529 unordered_set& operator=(unordered_set&& __u)
693 void swap(unordered_set& __u)
695 {__table_.swap(__u.__table_);}
929 const unordered_set& __u)
930 : __table_(__u.__table_)
935 __table_.rehash(__u.bucket_count());
936 insert(__u.begin(), __u.end());
941 const unordered_set& __u, const allocator_type& __a)
942 : __table_(__u.__table_, __a)
947 __table_.rehash(__u.bucket_count());
948 insert(__u.begin(), __u.end());
956 unordered_set&& __u)
958 : __table_(_VSTD::move(__u.__table_))
962 __get_db()->swap(this, &__u);
968 unordered_set&& __u, const allocator_type& __a)
969 : __table_(_VSTD::move(__u.__table_), __a)
974 if (__a != __u.get_allocator())
976 iterator __i = __u.begin();
977 while (__u.size() != 0)
978 __table_.__insert_unique(_VSTD::move(__u.__table_.remove(__i++)->__value_));
982 __get_db()->swap(this, &__u);
1025 unordered_set<_Value, _Hash, _Pred, _Alloc>::operator=(unordered_set&& __u)
1028 __table_ = _VSTD::move(__u.__table_);
1189 unordered_multiset(const unordered_multiset& __u);
1190 unordered_multiset(const unordered_multiset& __u, const allocator_type& __a);
1193 unordered_multiset(unordered_multiset&& __u)
1195 unordered_multiset(unordered_multiset&& __u, const allocator_type& __a);
1218 unordered_multiset& operator=(const unordered_multiset& __u)
1220 __table_ = __u.__table_;
1225 unordered_multiset& operator=(unordered_multiset&& __u)
1359 void swap(unordered_multiset& __u)
1361 {__table_.swap(__u.__table_);}
1594 const unordered_multiset& __u)
1595 : __table_(__u.__table_)
1600 __table_.rehash(__u.bucket_count());
1601 insert(__u.begin(), __u.end());
1606 const unordered_multiset& __u, const allocator_type& __a)
1607 : __table_(__u.__table_, __a)
1612 __table_.rehash(__u.bucket_count());
1613 insert(__u.begin(), __u.end());
1621 unordered_multiset&& __u)
1623 : __table_(_VSTD::move(__u.__table_))
1627 __get_db()->swap(this, &__u);
1633 unordered_multiset&& __u, const allocator_type& __a)
1634 : __table_(_VSTD::move(__u.__table_), __a)
1639 if (__a != __u.get_allocator())
1641 iterator __i = __u.begin();
1642 while (__u.size() != 0)
1643 __table_.__insert_multi(_VSTD::move(__u.__table_.remove(__i++)->__value_));
1647 __get_db()->swap(this, &__u);
1691 unordered_multiset&& __u)
1694 __table_ = _VSTD::move(__u.__table_);