Lines Matching refs:size_type

65   typedef typename _Ht::size_type size_type;
83 explicit hash_map(size_type __n)
85 hash_map(size_type __n, const hasher& __hf)
87 hash_map(size_type __n, const hasher& __hf, const key_equal& __eql,
97 hash_map(_InputIterator __f, _InputIterator __l, size_type __n)
101 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
106 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
116 hash_map(const value_type* __f, const value_type* __l, size_type __n)
119 hash_map(const value_type* __f, const value_type* __l, size_type __n,
123 hash_map(const value_type* __f, const value_type* __l, size_type __n,
132 hash_map(const_iterator __f, const_iterator __l, size_type __n)
135 hash_map(const_iterator __f, const_iterator __l, size_type __n,
139 hash_map(const_iterator __f, const_iterator __l, size_type __n,
147 size_type size() const { return _M_ht.size(); }
148 size_type max_size() const { return _M_ht.max_size(); }
184 size_type count(const key_type& __key) const { return _M_ht.count(__key); }
192 size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
197 void resize(size_type __hint) { _M_ht.resize(__hint); }
198 size_type bucket_count() const { return _M_ht.bucket_count(); }
199 size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
200 size_type elems_in_bucket(size_type __n) const
248 typedef typename _Ht::size_type size_type;
266 explicit hash_multimap(size_type __n)
268 hash_multimap(size_type __n, const hasher& __hf)
270 hash_multimap(size_type __n, const hasher& __hf, const key_equal& __eql,
280 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n)
284 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n,
289 hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n,
299 hash_multimap(const value_type* __f, const value_type* __l, size_type __n)
302 hash_multimap(const value_type* __f, const value_type* __l, size_type __n,
306 hash_multimap(const value_type* __f, const value_type* __l, size_type __n,
315 hash_multimap(const_iterator __f, const_iterator __l, size_type __n)
318 hash_multimap(const_iterator __f, const_iterator __l, size_type __n,
322 hash_multimap(const_iterator __f, const_iterator __l, size_type __n,
330 size_type size() const { return _M_ht.size(); }
331 size_type max_size() const { return _M_ht.max_size(); }
364 size_type count(const key_type& __key) const { return _M_ht.count(__key); }
372 size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
378 void resize(size_type __hint) { _M_ht.resize(__hint); }
379 size_type bucket_count() const { return _M_ht.bucket_count(); }
380 size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
381 size_type elems_in_bucket(size_type __n) const