Lines Matching refs:__source

1413     void merge(map<key_type, mapped_type, _Compare2, allocator_type>& __source)
1415 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1417 __tree_.__node_handle_merge_unique(__source.__tree_);
1421 void merge(map<key_type, mapped_type, _Compare2, allocator_type>&& __source)
1423 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1425 __tree_.__node_handle_merge_unique(__source.__tree_);
1429 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>& __source)
1431 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1433 __tree_.__node_handle_merge_unique(__source.__tree_);
1437 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>&& __source)
1439 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1441 __tree_.__node_handle_merge_unique(__source.__tree_);
2082 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>& __source)
2084 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2086 return __tree_.__node_handle_merge_multi(__source.__tree_);
2090 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>&& __source)
2092 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2094 return __tree_.__node_handle_merge_multi(__source.__tree_);
2098 void merge(map<key_type, mapped_type, _Compare2, allocator_type>& __source)
2100 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2102 return __tree_.__node_handle_merge_multi(__source.__tree_);
2106 void merge(map<key_type, mapped_type, _Compare2, allocator_type>&& __source)
2108 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2110 return __tree_.__node_handle_merge_multi(__source.__tree_);