Lines Matching refs:unordered_map

2 //===-------------------------- unordered_map -----------------------------===//
16 unordered_map synopsis
25 class unordered_map
47 unordered_map()
52 explicit unordered_map(size_type n, const hasher& hf = hasher(),
56 unordered_map(InputIterator f, InputIterator l,
60 explicit unordered_map(const allocator_type&);
61 unordered_map(const unordered_map&);
62 unordered_map(const unordered_map&, const Allocator&);
63 unordered_map(unordered_map&&)
68 unordered_map(unordered_map&&, const Allocator&);
69 unordered_map(initializer_list<value_type>, size_type n = 0,
72 unordered_map(size_type n, const allocator_type& a)
73 : unordered_map(n, hasher(), key_equal(), a) {} // C++14
74 unordered_map(size_type n, const hasher& hf, const allocator_type& a)
75 : unordered_map(n, hf, key_equal(), a) {} // C++14
77 unordered_map(InputIterator f, InputIterator l, size_type n, const allocator_type& a)
78 : unordered_map(f, l, n, hasher(), key_equal(), a) {} // C++14
80 unordered_map(InputIterator f, InputIterator l, size_type n, const hasher& hf,
82 : unordered_map(f, l, n, hf, key_equal(), a) {} // C++14
83 unordered_map(initializer_list<value_type> il, size_type n, const allocator_type& a)
84 : unordered_map(il, n, hasher(), key_equal(), a) {} // C++14
85 unordered_map(initializer_list<value_type> il, size_type n, const hasher& hf,
87 : unordered_map(il, n, hf, key_equal(), a) {} // C++14
88 ~unordered_map();
89 unordered_map& operator=(const unordered_map&);
90 unordered_map& operator=(unordered_map&&)
96 unordered_map& operator=(initializer_list<value_type>);
130 void swap(unordered_map&)
173 void swap(unordered_map<Key, T, Hash, Pred, Alloc>& x,
174 unordered_map<Key, T, Hash, Pred, Alloc>& y)
179 operator==(const unordered_map<Key, T, Hash, Pred, Alloc>& x,
180 const unordered_map<Key, T, Hash, Pred, Alloc>& y);
184 operator!=(const unordered_map<Key, T, Hash, Pred, Alloc>& x,
185 const unordered_map<Key, T, Hash, Pred, Alloc>& y);
644 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_map;
705 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_map;
713 class _LIBCPP_TYPE_VIS_ONLY unordered_map
766 unordered_map()
773 explicit unordered_map(size_type __n, const hasher& __hf = hasher(),
775 unordered_map(size_type __n, const hasher& __hf,
779 unordered_map(_InputIterator __first, _InputIterator __last);
781 unordered_map(_InputIterator __first, _InputIterator __last,
785 unordered_map(_InputIterator __first, _InputIterator __last,
789 explicit unordered_map(const allocator_type& __a);
790 unordered_map(const unordered_map& __u);
791 unordered_map(const unordered_map& __u, const allocator_type& __a);
793 unordered_map(unordered_map&& __u)
795 unordered_map(unordered_map&& __u, const allocator_type& __a);
798 unordered_map(initializer_list<value_type> __il);
799 unordered_map(initializer_list<value_type> __il, size_type __n,
801 unordered_map(initializer_list<value_type> __il, size_type __n,
807 unordered_map(size_type __n, const allocator_type& __a)
808 : unordered_map(__n, hasher(), key_equal(), __a) {}
810 unordered_map(size_type __n, const hasher& __hf, const allocator_type& __a)
811 : unordered_map(__n, __hf, key_equal(), __a) {}
814unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type& …
815 : unordered_map(__first, __last, __n, hasher(), key_equal(), __a) {}
818unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf,
820 : unordered_map(__first, __last, __n, __hf, key_equal(), __a) {}
822 unordered_map(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
823 : unordered_map(__il, __n, hasher(), key_equal(), __a) {}
825 unordered_map(initializer_list<value_type> __il, size_type __n, const hasher& __hf,
827 : unordered_map(__il, __n, __hf, key_equal(), __a) {}
829 // ~unordered_map() = default;
831 unordered_map& operator=(const unordered_map& __u)
848 unordered_map& operator=(unordered_map&& __u)
852 unordered_map& operator=(initializer_list<value_type> __il);
891 "unordered_map::emplace_hint(const_iterator, args...) called with an iterator not"
892 " referring to this unordered_map");
916 … "unordered_map::insert(const_iterator, const value_type&) called with an iterator not"
917 " referring to this unordered_map");
932 "unordered_map::insert(const_iterator, value_type&&) called with an iterator not"
933 " referring to this unordered_map");
960 void swap(unordered_map& __u)
1056 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1067 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1080 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1091 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1102 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1116 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1129 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1130 const unordered_map& __u)
1141 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1142 const unordered_map& __u, const allocator_type& __a)
1156 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1157 unordered_map&& __u)
1168 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1169 unordered_map&& __u, const allocator_type& __a)
1194 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1204 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1217 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1235 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>&
1236 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator=(unordered_map&& __u)
1249 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>&
1250 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator=(
1262 typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
1263 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node()
1275 typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
1276 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(_A0&& __a0)
1288 typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
1289 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node_with_key(key_type&& __k)
1304 typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
1305 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(_A0&& __a0,
1321 pair<typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator, bool>
1322 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::emplace(_Args&&... __args)
1335 typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
1336 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node_with_key(const key_type& __k)
1351 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
1360 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k)
1375 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](key_type&& __k)
1390 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::at(const key_type& __k)
1395 throw out_of_range("unordered_map::at: key not found");
1402 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::at(const key_type& __k) const
1407 throw out_of_range("unordered_map::at: key not found");
1415 swap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
1416 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
1424 operator==(const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
1425 const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
1429 typedef typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator
1444 operator!=(const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
1445 const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)