• Home
  • Raw
  • Download

Lines Matching refs:__n

773     explicit unordered_map(size_type __n, const hasher& __hf = hasher(),
775 unordered_map(size_type __n, const hasher& __hf,
782 size_type __n, const hasher& __hf = hasher(),
786 size_type __n, const hasher& __hf,
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) {}
814 …unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type& …
815 : unordered_map(__first, __last, __n, hasher(), key_equal(), __a) {}
818 … unordered_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) {}
998 size_type bucket_size(size_type __n) const
999 {return __table_.bucket_size(__n);}
1004 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1006 local_iterator end(size_type __n) {return __table_.end(__n);}
1008 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1010 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1012 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1014 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1023 void rehash(size_type __n) {__table_.rehash(__n);}
1025 void reserve(size_type __n) {__table_.reserve(__n);}
1033 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1034 {return __table_.__addable(&__i->__i_, __n);}
1035 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1036 {return __table_.__addable(&__i->__i_, __n);}
1057 size_type __n, const hasher& __hf, const key_equal& __eql)
1063 __table_.rehash(__n);
1068 size_type __n, const hasher& __hf, const key_equal& __eql,
1075 __table_.rehash(__n);
1103 _InputIterator __first, _InputIterator __last, size_type __n,
1110 __table_.rehash(__n);
1117 _InputIterator __first, _InputIterator __last, size_type __n,
1124 __table_.rehash(__n);
1205 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1212 __table_.rehash(__n);
1218 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1225 __table_.rehash(__n);
1510 explicit unordered_multimap(size_type __n, const hasher& __hf = hasher(),
1512 unordered_multimap(size_type __n, const hasher& __hf,
1519 size_type __n, const hasher& __hf = hasher(),
1523 size_type __n, const hasher& __hf,
1536 unordered_multimap(initializer_list<value_type> __il, size_type __n,
1539 unordered_multimap(initializer_list<value_type> __il, size_type __n,
1545 unordered_multimap(size_type __n, const allocator_type& __a)
1546 : unordered_multimap(__n, hasher(), key_equal(), __a) {}
1548 unordered_multimap(size_type __n, const hasher& __hf, const allocator_type& __a)
1549 : unordered_multimap(__n, __hf, key_equal(), __a) {}
1552 …unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_t…
1553 : unordered_multimap(__first, __last, __n, hasher(), key_equal(), __a) {}
1556 …unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const hasher& __h…
1558 : unordered_multimap(__first, __last, __n, __hf, key_equal(), __a) {}
1560 unordered_multimap(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
1561 : unordered_multimap(__il, __n, hasher(), key_equal(), __a) {}
1563 unordered_multimap(initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1565 : unordered_multimap(__il, __n, __hf, key_equal(), __a) {}
1696 size_type bucket_size(size_type __n) const
1697 {return __table_.bucket_size(__n);}
1702 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1704 local_iterator end(size_type __n) {return __table_.end(__n);}
1706 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1708 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1710 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1712 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1721 void rehash(size_type __n) {__table_.rehash(__n);}
1723 void reserve(size_type __n) {__table_.reserve(__n);}
1731 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1732 {return __table_.__addable(&__i->__i_, __n);}
1733 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1734 {return __table_.__addable(&__i->__i_, __n);}
1753 size_type __n, const hasher& __hf, const key_equal& __eql)
1759 __table_.rehash(__n);
1764 size_type __n, const hasher& __hf, const key_equal& __eql,
1771 __table_.rehash(__n);
1788 _InputIterator __first, _InputIterator __last, size_type __n,
1795 __table_.rehash(__n);
1802 _InputIterator __first, _InputIterator __last, size_type __n,
1809 __table_.rehash(__n);
1903 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1910 __table_.rehash(__n);
1916 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1923 __table_.rehash(__n);