Lines Matching refs:hash_map
2 //===-------------------------- hash_map ----------------------------------===//
16 hash_map synopsis
23 class hash_map
43 explicit hash_map(size_type n = 193, const hasher& hf = hasher(),
47 hash_map(InputIterator f, InputIterator l,
51 hash_map(const hash_map&);
52 ~hash_map();
53 hash_map& operator=(const hash_map&);
75 void swap(hash_map&);
97 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x,
98 hash_map<Key, T, Hash, Pred, Alloc>& y);
102 operator==(const hash_map<Key, T, Hash, Pred, Alloc>& x,
103 const hash_map<Key, T, Hash, Pred, Alloc>& y);
107 operator!=(const hash_map<Key, T, Hash, Pred, Alloc>& x,
108 const hash_map<Key, T, Hash, Pred, Alloc>& y);
211 _LIBCPP_WARNING("Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>")
213 # warning Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>
404 template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS hash_map;
457 template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS hash_map;
465 class _LIBCPP_TEMPLATE_VIS hash_map
507 _LIBCPP_INLINE_VISIBILITY hash_map() {__table_.rehash(193);}
508 explicit hash_map(size_type __n, const hasher& __hf = hasher(),
510 hash_map(size_type __n, const hasher& __hf,
514 hash_map(_InputIterator __first, _InputIterator __last);
516 hash_map(_InputIterator __first, _InputIterator __last,
520 hash_map(_InputIterator __first, _InputIterator __last,
524 hash_map(const hash_map& __u);
566 void swap(hash_map& __u) {__table_.swap(__u.__table_);}
607 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
615 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
625 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
634 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
645 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
655 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
656 const hash_map& __u)
664 typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
665 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(const key_type& __k)
680 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
689 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k)
703 swap(hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
704 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
711 operator==(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
712 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
716 typedef typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator
731 operator!=(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
732 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)