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>
410 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY hash_map;
469 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY hash_map;
477 class _LIBCPP_TYPE_VIS_ONLY hash_map
519 _LIBCPP_INLINE_VISIBILITY hash_map() {__table_.rehash(193);}
520 explicit hash_map(size_type __n, const hasher& __hf = hasher(),
522 hash_map(size_type __n, const hasher& __hf,
526 hash_map(_InputIterator __first, _InputIterator __last);
528 hash_map(_InputIterator __first, _InputIterator __last,
532 hash_map(_InputIterator __first, _InputIterator __last,
536 hash_map(const hash_map& __u);
577 void swap(hash_map& __u) {__table_.swap(__u.__table_);}
618 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
626 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
636 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
645 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
656 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
666 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
667 const hash_map& __u)
675 typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
676 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(const key_type& __k)
691 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
700 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k)
714 swap(hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
715 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
722 operator==(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
723 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
727 typedef typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator
742 operator!=(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
743 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)