Lines Matching refs:size_type

62   typedef typename _Ht::size_type size_type;
81 explicit hash_set(size_type __n)
83 hash_set(size_type __n, const hasher& __hf)
85 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql,
95 hash_set(_InputIterator __f, _InputIterator __l, size_type __n)
99 hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
104 hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
114 hash_set(const value_type* __f, const value_type* __l, size_type __n)
117 hash_set(const value_type* __f, const value_type* __l, size_type __n,
121 hash_set(const value_type* __f, const value_type* __l, size_type __n,
130 hash_set(const_iterator __f, const_iterator __l, size_type __n)
133 hash_set(const_iterator __f, const_iterator __l, size_type __n,
137 hash_set(const_iterator __f, const_iterator __l, size_type __n,
145 size_type size() const { return _M_ht.size(); }
146 size_type max_size() const { return _M_ht.max_size(); }
181 size_type count(const key_type& __key) const { return _M_ht.count(__key); }
186 size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
192 void resize(size_type __hint) { _M_ht.resize(__hint); }
193 size_type bucket_count() const { return _M_ht.bucket_count(); }
194 size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
195 size_type elems_in_bucket(size_type __n) const
241 typedef typename _Ht::size_type size_type;
260 explicit hash_multiset(size_type __n)
262 hash_multiset(size_type __n, const hasher& __hf)
264 hash_multiset(size_type __n, const hasher& __hf, const key_equal& __eql,
274 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n)
278 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
283 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
293 hash_multiset(const value_type* __f, const value_type* __l, size_type __n)
296 hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
300 hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
309 hash_multiset(const_iterator __f, const_iterator __l, size_type __n)
312 hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
316 hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
324 size_type size() const { return _M_ht.size(); }
325 size_type max_size() const { return _M_ht.max_size(); }
353 size_type count(const key_type& __key) const { return _M_ht.count(__key); }
358 size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
364 void resize(size_type __hint) { _M_ht.resize(__hint); }
365 size_type bucket_count() const { return _M_ht.bucket_count(); }
366 size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
367 size_type elems_in_bucket(size_type __n) const