Lines Matching refs:hash_map

15     hash_map synopsis
22 class hash_map
42 hash_map();
43 explicit hash_map(size_type n, const hasher& hf = hasher(),
47 hash_map(InputIterator f, InputIterator l);
49 hash_map(InputIterator f, InputIterator l,
53 hash_map(const hash_map&);
54 ~hash_map();
55 hash_map& operator=(const hash_map&);
77 void swap(hash_map&);
99 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x,
100 hash_map<Key, T, Hash, Pred, Alloc>& y);
104 operator==(const hash_map<Key, T, Hash, Pred, Alloc>& x,
105 const hash_map<Key, T, Hash, Pred, Alloc>& y);
109 operator!=(const hash_map<Key, T, Hash, Pred, Alloc>& x,
110 const hash_map<Key, T, Hash, Pred, Alloc>& y);
219 _LIBCPP_WARNING("Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>")
221 # warning Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>
411 template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS hash_map;
464 template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS hash_map;
472 class _LIBCPP_TEMPLATE_VIS hash_map
515 _LIBCPP_INLINE_VISIBILITY hash_map() { }
516 explicit hash_map(size_type __n, const hasher& __hf = hasher(),
518 hash_map(size_type __n, const hasher& __hf,
522 hash_map(_InputIterator __first, _InputIterator __last);
524 hash_map(_InputIterator __first, _InputIterator __last,
528 hash_map(_InputIterator __first, _InputIterator __last,
532 hash_map(const hash_map& __u);
574 void swap(hash_map& __u) {__table_.swap(__u.__table_);}
615 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
623 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
633 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
641 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
652 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
662 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
663 const hash_map& __u)
671 typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
672 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(const key_type& __k)
687 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
696 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k)
710 swap(hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
711 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
718 operator==(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
719 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
723 typedef typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator
738 operator!=(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
739 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)