Lines Matching refs:__n
802 explicit unordered_map(size_type __n, const hasher& __hf = hasher(),
804 unordered_map(size_type __n, const hasher& __hf,
811 size_type __n, const hasher& __hf = hasher(),
815 size_type __n, const hasher& __hf,
830 unordered_map(initializer_list<value_type> __il, size_type __n,
832 unordered_map(initializer_list<value_type> __il, size_type __n,
838 unordered_map(size_type __n, const allocator_type& __a)
839 : unordered_map(__n, hasher(), key_equal(), __a) {}
841 unordered_map(size_type __n, const hasher& __hf, const allocator_type& __a)
842 : unordered_map(__n, __hf, key_equal(), __a) {}
845 …unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type& …
846 : unordered_map(__first, __last, __n, hasher(), key_equal(), __a) {}
849 … unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf,
851 : unordered_map(__first, __last, __n, __hf, key_equal(), __a) {}
853 unordered_map(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
854 : unordered_map(__il, __n, hasher(), key_equal(), __a) {}
856 unordered_map(initializer_list<value_type> __il, size_type __n, const hasher& __hf,
858 : unordered_map(__il, __n, __hf, key_equal(), __a) {}
1134 size_type bucket_size(size_type __n) const
1135 {return __table_.bucket_size(__n);}
1140 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1142 local_iterator end(size_type __n) {return __table_.end(__n);}
1144 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1146 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1148 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1150 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1159 void rehash(size_type __n) {__table_.rehash(__n);}
1161 void reserve(size_type __n) {__table_.reserve(__n);}
1169 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1170 {return __table_.__addable(&__i->__i_, __n);}
1171 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1172 {return __table_.__addable(&__i->__i_, __n);}
1185 size_type __n, const hasher& __hf, const key_equal& __eql)
1191 __table_.rehash(__n);
1196 size_type __n, const hasher& __hf, const key_equal& __eql,
1203 __table_.rehash(__n);
1231 _InputIterator __first, _InputIterator __last, size_type __n,
1238 __table_.rehash(__n);
1245 _InputIterator __first, _InputIterator __last, size_type __n,
1252 __table_.rehash(__n);
1333 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1340 __table_.rehash(__n);
1346 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1353 __table_.rehash(__n);
1569 explicit unordered_multimap(size_type __n, const hasher& __hf = hasher(),
1571 unordered_multimap(size_type __n, const hasher& __hf,
1578 size_type __n, const hasher& __hf = hasher(),
1582 size_type __n, const hasher& __hf,
1597 unordered_multimap(initializer_list<value_type> __il, size_type __n,
1600 unordered_multimap(initializer_list<value_type> __il, size_type __n,
1606 unordered_multimap(size_type __n, const allocator_type& __a)
1607 : unordered_multimap(__n, hasher(), key_equal(), __a) {}
1609 unordered_multimap(size_type __n, const hasher& __hf, const allocator_type& __a)
1610 : unordered_multimap(__n, __hf, key_equal(), __a) {}
1613 …unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_t…
1614 : unordered_multimap(__first, __last, __n, hasher(), key_equal(), __a) {}
1617 …unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const hasher& __h…
1619 : unordered_multimap(__first, __last, __n, __hf, key_equal(), __a) {}
1621 unordered_multimap(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
1622 : unordered_multimap(__il, __n, hasher(), key_equal(), __a) {}
1624 unordered_multimap(initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1626 : unordered_multimap(__il, __n, __hf, key_equal(), __a) {}
1773 size_type bucket_size(size_type __n) const
1774 {return __table_.bucket_size(__n);}
1779 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1781 local_iterator end(size_type __n) {return __table_.end(__n);}
1783 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1785 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1787 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1789 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1798 void rehash(size_type __n) {__table_.rehash(__n);}
1800 void reserve(size_type __n) {__table_.reserve(__n);}
1808 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1809 {return __table_.__addable(&__i->__i_, __n);}
1810 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1811 {return __table_.__addable(&__i->__i_, __n);}
1820 size_type __n, const hasher& __hf, const key_equal& __eql)
1826 __table_.rehash(__n);
1831 size_type __n, const hasher& __hf, const key_equal& __eql,
1838 __table_.rehash(__n);
1855 _InputIterator __first, _InputIterator __last, size_type __n,
1862 __table_.rehash(__n);
1869 _InputIterator __first, _InputIterator __last, size_type __n,
1876 __table_.rehash(__n);
1970 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1977 __table_.rehash(__n);
1983 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1990 __table_.rehash(__n);