• Home
  • Raw
  • Download

Lines Matching refs:__n

456     explicit unordered_set(size_type __n, const hasher& __hf = hasher(),
460 unordered_set(size_type __n, const allocator_type& __a)
461 : unordered_set(__n, hasher(), key_equal(), __a) {}
463 unordered_set(size_type __n, const hasher& __hf, const allocator_type& __a)
464 : unordered_set(__n, __hf, key_equal(), __a) {}
466 unordered_set(size_type __n, const hasher& __hf, const key_equal& __eql,
472 size_type __n, const hasher& __hf = hasher(),
476 size_type __n, const hasher& __hf, const key_equal& __eql,
482 size_type __n, const allocator_type& __a)
483 : unordered_set(__first, __last, __n, hasher(), key_equal(), __a) {}
486 size_type __n, const hasher& __hf, const allocator_type& __a)
487 : unordered_set(__first, __last, __n, __hf, key_equal(), __a) {}
499 unordered_set(initializer_list<value_type> __il, size_type __n,
502 unordered_set(initializer_list<value_type> __il, size_type __n,
507 unordered_set(initializer_list<value_type> __il, size_type __n,
509 : unordered_set(__il, __n, hasher(), key_equal(), __a) {}
511 unordered_set(initializer_list<value_type> __il, size_type __n,
513 : unordered_set(__il, __n, __hf, key_equal(), __a) {}
756 size_type bucket_size(size_type __n) const {return __table_.bucket_size(__n);}
761 local_iterator begin(size_type __n) {return __table_.begin(__n);}
763 local_iterator end(size_type __n) {return __table_.end(__n);}
765 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
767 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
769 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
771 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
780 void rehash(size_type __n) {__table_.rehash(__n);}
782 void reserve(size_type __n) {__table_.reserve(__n);}
790 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
791 {return __table_.__addable(__i, __n);}
792 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
793 {return __table_.__addable(__i, __n);}
856 unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n,
863 __table_.rehash(__n);
867 unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n,
874 __table_.rehash(__n);
891 _InputIterator __first, _InputIterator __last, size_type __n,
898 __table_.rehash(__n);
905 _InputIterator __first, _InputIterator __last, size_type __n,
912 __table_.rehash(__n);
998 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1005 __table_.rehash(__n);
1011 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1018 __table_.rehash(__n);
1153 explicit unordered_multiset(size_type __n, const hasher& __hf = hasher(),
1155 unordered_multiset(size_type __n, const hasher& __hf,
1159 unordered_multiset(size_type __n, const allocator_type& __a)
1160 : unordered_multiset(__n, hasher(), key_equal(), __a) {}
1162 unordered_multiset(size_type __n, const hasher& __hf, const allocator_type& __a)
1163 : unordered_multiset(__n, __hf, key_equal(), __a) {}
1169 size_type __n, const hasher& __hf = hasher(),
1173 size_type __n , const hasher& __hf,
1179 size_type __n, const allocator_type& __a)
1180 : unordered_multiset(__first, __last, __n, hasher(), key_equal(), __a) {}
1184 size_type __n, const hasher& __hf, const allocator_type& __a)
1185 : unordered_multiset(__first, __last, __n, __hf, key_equal(), __a) {}
1197 unordered_multiset(initializer_list<value_type> __il, size_type __n,
1200 unordered_multiset(initializer_list<value_type> __il, size_type __n,
1205 unordered_multiset(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
1206 : unordered_multiset(__il, __n, hasher(), key_equal(), __a) {}
1208 …unordered_multiset(initializer_list<value_type> __il, size_type __n, const hasher& __hf, const all…
1209 : unordered_multiset(__il, __n, __hf, key_equal(), __a) {}
1422 size_type bucket_size(size_type __n) const {return __table_.bucket_size(__n);}
1427 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1429 local_iterator end(size_type __n) {return __table_.end(__n);}
1431 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1433 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1435 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1437 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1446 void rehash(size_type __n) {__table_.rehash(__n);}
1448 void reserve(size_type __n) {__table_.reserve(__n);}
1456 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1457 {return __table_.__addable(__i, __n);}
1458 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1459 {return __table_.__addable(__i, __n);}
1521 size_type __n, const hasher& __hf, const key_equal& __eql)
1527 __table_.rehash(__n);
1532 size_type __n, const hasher& __hf, const key_equal& __eql,
1539 __table_.rehash(__n);
1556 _InputIterator __first, _InputIterator __last, size_type __n,
1563 __table_.rehash(__n);
1570 _InputIterator __first, _InputIterator __last, size_type __n,
1577 __table_.rehash(__n);
1663 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1670 __table_.rehash(__n);
1676 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1683 __table_.rehash(__n);