Lines Matching refs:__source

1398     void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>& __source)
1400 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1402 return __table_.__node_handle_merge_unique(__source.__table_);
1406 void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>&& __source)
1408 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1410 return __table_.__node_handle_merge_unique(__source.__table_);
1414 void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>& __source)
1416 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1418 return __table_.__node_handle_merge_unique(__source.__table_);
1422 void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>&& __source)
1424 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1426 return __table_.__node_handle_merge_unique(__source.__table_);
2181 void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>& __source)
2183 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2185 return __table_.__node_handle_merge_multi(__source.__table_);
2189 void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>&& __source)
2191 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2193 return __table_.__node_handle_merge_multi(__source.__table_);
2197 void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>& __source)
2199 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2201 return __table_.__node_handle_merge_multi(__source.__table_);
2205 void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>&& __source)
2207 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
2209 return __table_.__node_handle_merge_multi(__source.__table_);