Lines Matching refs:__source

742     void merge(unordered_set<key_type, _H2, _P2, allocator_type>& __source)
744 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
746 __table_.__node_handle_merge_unique(__source.__table_);
750 void merge(unordered_set<key_type, _H2, _P2, allocator_type>&& __source)
752 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
754 __table_.__node_handle_merge_unique(__source.__table_);
758 void merge(unordered_multiset<key_type, _H2, _P2, allocator_type>& __source)
760 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
762 __table_.__node_handle_merge_unique(__source.__table_);
766 void merge(unordered_multiset<key_type, _H2, _P2, allocator_type>&& __source)
768 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
770 __table_.__node_handle_merge_unique(__source.__table_);
1370 void merge(unordered_multiset<key_type, _H2, _P2, allocator_type>& __source)
1372 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1374 return __table_.__node_handle_merge_multi(__source.__table_);
1378 void merge(unordered_multiset<key_type, _H2, _P2, allocator_type>&& __source)
1380 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1382 return __table_.__node_handle_merge_multi(__source.__table_);
1386 void merge(unordered_set<key_type, _H2, _P2, allocator_type>& __source)
1388 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1390 return __table_.__node_handle_merge_multi(__source.__table_);
1394 void merge(unordered_set<key_type, _H2, _P2, allocator_type>&& __source)
1396 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1398 return __table_.__node_handle_merge_multi(__source.__table_);