Lines Matching refs:__source
797 void merge(set<key_type, _Compare2, allocator_type>& __source)
799 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
801 __tree_.__node_handle_merge_unique(__source.__tree_);
805 void merge(set<key_type, _Compare2, allocator_type>&& __source)
807 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
809 __tree_.__node_handle_merge_unique(__source.__tree_);
813 void merge(multiset<key_type, _Compare2, allocator_type>& __source)
815 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
817 __tree_.__node_handle_merge_unique(__source.__tree_);
821 void merge(multiset<key_type, _Compare2, allocator_type>&& __source)
823 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
825 __tree_.__node_handle_merge_unique(__source.__tree_);
1328 void merge(multiset<key_type, _Compare2, allocator_type>& __source)
1330 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1332 __tree_.__node_handle_merge_multi(__source.__tree_);
1336 void merge(multiset<key_type, _Compare2, allocator_type>&& __source)
1338 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1340 __tree_.__node_handle_merge_multi(__source.__tree_);
1344 void merge(set<key_type, _Compare2, allocator_type>& __source)
1346 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1348 __tree_.__node_handle_merge_multi(__source.__tree_);
1352 void merge(set<key_type, _Compare2, allocator_type>&& __source)
1354 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1356 __tree_.__node_handle_merge_multi(__source.__tree_);