Lines Matching refs:__n

430     explicit unordered_set(size_type __n, const hasher& __hf = hasher(),
434 unordered_set(size_type __n, const allocator_type& __a)
435 : unordered_set(__n, hasher(), key_equal(), __a) {}
437 unordered_set(size_type __n, const hasher& __hf, const allocator_type& __a)
438 : unordered_set(__n, __hf, key_equal(), __a) {}
440 unordered_set(size_type __n, const hasher& __hf, const key_equal& __eql,
446 size_type __n, const hasher& __hf = hasher(),
450 size_type __n, const hasher& __hf, const key_equal& __eql,
456 size_type __n, const allocator_type& __a)
457 : unordered_set(__first, __last, __n, hasher(), key_equal(), __a) {}
460 size_type __n, const hasher& __hf, const allocator_type& __a)
461 : unordered_set(__first, __last, __n, __hf, key_equal(), __a) {}
473 unordered_set(initializer_list<value_type> __il, size_type __n,
476 unordered_set(initializer_list<value_type> __il, size_type __n,
481 unordered_set(initializer_list<value_type> __il, size_type __n,
483 : unordered_set(__il, __n, hasher(), key_equal(), __a) {}
485 unordered_set(initializer_list<value_type> __il, size_type __n,
487 : unordered_set(__il, __n, __hf, key_equal(), __a) {}
691 size_type bucket_size(size_type __n) const {return __table_.bucket_size(__n);}
696 local_iterator begin(size_type __n) {return __table_.begin(__n);}
698 local_iterator end(size_type __n) {return __table_.end(__n);}
700 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
702 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
704 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
706 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
715 void rehash(size_type __n) {__table_.rehash(__n);}
717 void reserve(size_type __n) {__table_.reserve(__n);}
725 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
726 {return __table_.__addable(__i, __n);}
727 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
728 {return __table_.__addable(__i, __n);}
735 unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n,
742 __table_.rehash(__n);
746 unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n,
753 __table_.rehash(__n);
770 _InputIterator __first, _InputIterator __last, size_type __n,
777 __table_.rehash(__n);
784 _InputIterator __first, _InputIterator __last, size_type __n,
791 __table_.rehash(__n);
877 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
884 __table_.rehash(__n);
890 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
897 __table_.rehash(__n);
1029 explicit unordered_multiset(size_type __n, const hasher& __hf = hasher(),
1031 unordered_multiset(size_type __n, const hasher& __hf,
1035 unordered_multiset(size_type __n, const allocator_type& __a)
1036 : unordered_multiset(__n, hasher(), key_equal(), __a) {}
1038 unordered_multiset(size_type __n, const hasher& __hf, const allocator_type& __a)
1039 : unordered_multiset(__n, __hf, key_equal(), __a) {}
1045 size_type __n, const hasher& __hf = hasher(),
1049 size_type __n , const hasher& __hf,
1055 size_type __n, const allocator_type& __a)
1056 : unordered_multiset(__first, __last, __n, hasher(), key_equal(), __a) {}
1060 size_type __n, const hasher& __hf, const allocator_type& __a)
1061 : unordered_multiset(__first, __last, __n, __hf, key_equal(), __a) {}
1073 unordered_multiset(initializer_list<value_type> __il, size_type __n,
1076 unordered_multiset(initializer_list<value_type> __il, size_type __n,
1081 unordered_multiset(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
1082 : unordered_multiset(__il, __n, hasher(), key_equal(), __a) {}
1084 …unordered_multiset(initializer_list<value_type> __il, size_type __n, const hasher& __hf, const all…
1085 : unordered_multiset(__il, __n, __hf, key_equal(), __a) {}
1259 size_type bucket_size(size_type __n) const {return __table_.bucket_size(__n);}
1264 local_iterator begin(size_type __n) {return __table_.begin(__n);}
1266 local_iterator end(size_type __n) {return __table_.end(__n);}
1268 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
1270 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
1272 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
1274 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1283 void rehash(size_type __n) {__table_.rehash(__n);}
1285 void reserve(size_type __n) {__table_.reserve(__n);}
1293 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1294 {return __table_.__addable(__i, __n);}
1295 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1296 {return __table_.__addable(__i, __n);}
1304 size_type __n, const hasher& __hf, const key_equal& __eql)
1310 __table_.rehash(__n);
1315 size_type __n, const hasher& __hf, const key_equal& __eql,
1322 __table_.rehash(__n);
1339 _InputIterator __first, _InputIterator __last, size_type __n,
1346 __table_.rehash(__n);
1353 _InputIterator __first, _InputIterator __last, size_type __n,
1360 __table_.rehash(__n);
1446 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1453 __table_.rehash(__n);
1459 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1466 __table_.rehash(__n);