Lines Matching refs:__u
465 unordered_set(const unordered_set& __u);
466 unordered_set(const unordered_set& __u, const allocator_type& __a);
469 unordered_set(unordered_set&& __u)
471 unordered_set(unordered_set&& __u, const allocator_type& __a);
492 unordered_set& operator=(const unordered_set& __u)
494 __table_ = __u.__table_;
499 unordered_set& operator=(unordered_set&& __u)
663 void swap(unordered_set& __u)
665 {__table_.swap(__u.__table_);}
808 const unordered_set& __u)
809 : __table_(__u.__table_)
814 __table_.rehash(__u.bucket_count());
815 insert(__u.begin(), __u.end());
820 const unordered_set& __u, const allocator_type& __a)
821 : __table_(__u.__table_, __a)
826 __table_.rehash(__u.bucket_count());
827 insert(__u.begin(), __u.end());
835 unordered_set&& __u)
837 : __table_(_VSTD::move(__u.__table_))
841 __get_db()->swap(this, &__u);
847 unordered_set&& __u, const allocator_type& __a)
848 : __table_(_VSTD::move(__u.__table_), __a)
853 if (__a != __u.get_allocator())
855 iterator __i = __u.begin();
856 while (__u.size() != 0)
857 __table_.__insert_unique(_VSTD::move(__u.__table_.remove(__i++)->__value_));
861 __get_db()->swap(this, &__u);
904 unordered_set<_Value, _Hash, _Pred, _Alloc>::operator=(unordered_set&& __u)
907 __table_ = _VSTD::move(__u.__table_);
1065 unordered_multiset(const unordered_multiset& __u);
1066 unordered_multiset(const unordered_multiset& __u, const allocator_type& __a);
1069 unordered_multiset(unordered_multiset&& __u)
1071 unordered_multiset(unordered_multiset&& __u, const allocator_type& __a);
1090 unordered_multiset& operator=(const unordered_multiset& __u)
1092 __table_ = __u.__table_;
1097 unordered_multiset& operator=(unordered_multiset&& __u)
1231 void swap(unordered_multiset& __u)
1233 {__table_.swap(__u.__table_);}
1377 const unordered_multiset& __u)
1378 : __table_(__u.__table_)
1383 __table_.rehash(__u.bucket_count());
1384 insert(__u.begin(), __u.end());
1389 const unordered_multiset& __u, const allocator_type& __a)
1390 : __table_(__u.__table_, __a)
1395 __table_.rehash(__u.bucket_count());
1396 insert(__u.begin(), __u.end());
1404 unordered_multiset&& __u)
1406 : __table_(_VSTD::move(__u.__table_))
1410 __get_db()->swap(this, &__u);
1416 unordered_multiset&& __u, const allocator_type& __a)
1417 : __table_(_VSTD::move(__u.__table_), __a)
1422 if (__a != __u.get_allocator())
1424 iterator __i = __u.begin();
1425 while (__u.size() != 0)
1426 __table_.__insert_multi(_VSTD::move(__u.__table_.remove(__i++)->__value_));
1430 __get_db()->swap(this, &__u);
1474 unordered_multiset&& __u)
1477 __table_ = _VSTD::move(__u.__table_);