Lines Matching refs:_M_ht

93       _Ht _M_ht;
115 { return _M_ht.hash_funct(); }
119 { return _M_ht.key_eq(); }
123 { return _M_ht.get_allocator(); }
127 : _M_ht(100, hasher(), key_equal(), allocator_type()) {}
131 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
134 : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
138 : _M_ht(__n, __hf, __eql, __a) {}
142 : _M_ht(100, hasher(), key_equal(), allocator_type())
143 { _M_ht.insert_unique(__f, __l); }
147 : _M_ht(__n, hasher(), key_equal(), allocator_type())
148 { _M_ht.insert_unique(__f, __l); }
153 : _M_ht(__n, __hf, key_equal(), allocator_type())
154 { _M_ht.insert_unique(__f, __l); }
160 : _M_ht(__n, __hf, __eql, __a)
161 { _M_ht.insert_unique(__f, __l); }
166 { return _M_ht.size(); }
170 { return _M_ht.max_size(); }
174 { return _M_ht.empty(); }
178 { _M_ht.swap(__hs._M_ht); }
187 { return _M_ht.begin(); }
191 { return _M_ht.end(); }
197 pair<typename _Ht::iterator, bool> __p = _M_ht.insert_unique(__obj);
204 { _M_ht.insert_unique(__f, __l); }
210 = _M_ht.insert_unique_noresize(__obj);
216 { return _M_ht.find(__key); }
220 { return _M_ht.count(__key); }
224 { return _M_ht.equal_range(__key); }
228 {return _M_ht.erase(__key); }
232 { _M_ht.erase(__it); }
236 { _M_ht.erase(__f, __l); }
240 { _M_ht.clear(); }
245 { _M_ht.resize(__hint); }
249 { return _M_ht.bucket_count(); }
253 { return _M_ht.max_bucket_count(); }
257 { return _M_ht.elems_in_bucket(__n); }
264 { return __hs1._M_ht == __hs2._M_ht; }
298 _Ht _M_ht;
320 { return _M_ht.hash_funct(); }
324 { return _M_ht.key_eq(); }
328 { return _M_ht.get_allocator(); }
332 : _M_ht(100, hasher(), key_equal(), allocator_type()) {}
336 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
339 : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
343 : _M_ht(__n, __hf, __eql, __a) {}
347 : _M_ht(100, hasher(), key_equal(), allocator_type())
348 { _M_ht.insert_equal(__f, __l); }
352 : _M_ht(__n, hasher(), key_equal(), allocator_type())
353 { _M_ht.insert_equal(__f, __l); }
358 : _M_ht(__n, __hf, key_equal(), allocator_type())
359 { _M_ht.insert_equal(__f, __l); }
365 : _M_ht(__n, __hf, __eql, __a)
366 { _M_ht.insert_equal(__f, __l); }
371 { return _M_ht.size(); }
375 { return _M_ht.max_size(); }
379 { return _M_ht.empty(); }
383 { _M_ht.swap(hs._M_ht); }
392 { return _M_ht.begin(); }
396 { return _M_ht.end(); }
401 { return _M_ht.insert_equal(__obj); }
406 { _M_ht.insert_equal(__f,__l); }
410 { return _M_ht.insert_equal_noresize(__obj); }
414 { return _M_ht.find(__key); }
418 { return _M_ht.count(__key); }
422 { return _M_ht.equal_range(__key); }
426 { return _M_ht.erase(__key); }
430 { _M_ht.erase(__it); }
434 { _M_ht.erase(__f, __l); }
438 { _M_ht.clear(); }
443 { _M_ht.resize(__hint); }
447 { return _M_ht.bucket_count(); }
451 { return _M_ht.max_bucket_count(); }
455 { return _M_ht.elems_in_bucket(__n); }
462 { return __hs1._M_ht == __hs2._M_ht; }