Lines Matching refs:__n
911 explicit unordered_map(size_type __n, const hasher& __hf = hasher(),
913 unordered_map(size_type __n, const hasher& __hf,
920 size_type __n, const hasher& __hf = hasher(),
924 size_type __n, const hasher& __hf,
937 unordered_map(initializer_list<value_type> __il, size_type __n,
939 unordered_map(initializer_list<value_type> __il, size_type __n,
945 unordered_map(size_type __n, const allocator_type& __a)
946 : unordered_map(__n, hasher(), key_equal(), __a) {}
948 unordered_map(size_type __n, const hasher& __hf, const allocator_type& __a)
949 : unordered_map(__n, __hf, key_equal(), __a) {}
952 …unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type& …
953 : unordered_map(__first, __last, __n, hasher(), key_equal(), __a) {}
956 … unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf,
958 : unordered_map(__first, __last, __n, __hf, key_equal(), __a) {}
960 unordered_map(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
961 : unordered_map(__il, __n, hasher(), key_equal(), __a) {}
963 unordered_map(initializer_list<value_type> __il, size_type __n, const hasher& __hf,
965 : unordered_map(__il, __n, __hf, key_equal(), __a) {}
1300 size_type bucket_size(size_type __n) const
1301 {return __table_.bucket_size(__n);}
1306 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1308 local_iterator end(size_type __n) {return __table_.end(__n);}
1310 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1312 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1314 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1316 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1325 void rehash(size_type __n) {__table_.rehash(__n);}
1327 void reserve(size_type __n) {__table_.reserve(__n);}
1335 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1336 {return __table_.__addable(&__i->__i_, __n);}
1337 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1338 {return __table_.__addable(&__i->__i_, __n);}
1351 size_type __n, const hasher& __hf, const key_equal& __eql)
1357 __table_.rehash(__n);
1362 size_type __n, const hasher& __hf, const key_equal& __eql,
1369 __table_.rehash(__n);
1397 _InputIterator __first, _InputIterator __last, size_type __n,
1404 __table_.rehash(__n);
1411 _InputIterator __first, _InputIterator __last, size_type __n,
1418 __table_.rehash(__n);
1495 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1502 __table_.rehash(__n);
1508 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1515 __table_.rehash(__n);
1738 explicit unordered_multimap(size_type __n, const hasher& __hf = hasher(),
1740 unordered_multimap(size_type __n, const hasher& __hf,
1747 size_type __n, const hasher& __hf = hasher(),
1751 size_type __n, const hasher& __hf,
1764 unordered_multimap(initializer_list<value_type> __il, size_type __n,
1767 unordered_multimap(initializer_list<value_type> __il, size_type __n,
1773 unordered_multimap(size_type __n, const allocator_type& __a)
1774 : unordered_multimap(__n, hasher(), key_equal(), __a) {}
1776 unordered_multimap(size_type __n, const hasher& __hf, const allocator_type& __a)
1777 : unordered_multimap(__n, __hf, key_equal(), __a) {}
1780 …unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_t…
1781 : unordered_multimap(__first, __last, __n, hasher(), key_equal(), __a) {}
1784 …unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const hasher& __h…
1786 : unordered_multimap(__first, __last, __n, __hf, key_equal(), __a) {}
1788 unordered_multimap(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
1789 : unordered_multimap(__il, __n, hasher(), key_equal(), __a) {}
1791 unordered_multimap(initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1793 : unordered_multimap(__il, __n, __hf, key_equal(), __a) {}
1998 size_type bucket_size(size_type __n) const
1999 {return __table_.bucket_size(__n);}
2004 local_iterator begin(size_type __n) {return __table_.begin(__n);}
2006 local_iterator end(size_type __n) {return __table_.end(__n);}
2008 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
2010 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
2012 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
2014 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
2023 void rehash(size_type __n) {__table_.rehash(__n);}
2025 void reserve(size_type __n) {__table_.reserve(__n);}
2033 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
2034 {return __table_.__addable(&__i->__i_, __n);}
2035 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
2036 {return __table_.__addable(&__i->__i_, __n);}
2045 size_type __n, const hasher& __hf, const key_equal& __eql)
2051 __table_.rehash(__n);
2056 size_type __n, const hasher& __hf, const key_equal& __eql,
2063 __table_.rehash(__n);
2080 _InputIterator __first, _InputIterator __last, size_type __n,
2087 __table_.rehash(__n);
2094 _InputIterator __first, _InputIterator __last, size_type __n,
2101 __table_.rehash(__n);
2190 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
2197 __table_.rehash(__n);
2203 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
2210 __table_.rehash(__n);