• Home
  • Raw
  • Download

Lines Matching refs:__k

951         size_type bucket(const _Key& __k) const
955 return __constrain_hash(hash_function()(__k), bucket_count());
969 size_type __erase_unique(const _Key& __k);
971 size_type __erase_multi(const _Key& __k);
975 size_type __count_unique(const _Key& __k) const;
977 size_type __count_multi(const _Key& __k) const;
981 __equal_range_unique(const _Key& __k);
984 __equal_range_unique(const _Key& __k) const;
988 __equal_range_multi(const _Key& __k);
991 __equal_range_multi(const _Key& __k) const;
2018 __hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k)
2020 size_t __hash = hash_function()(__k);
2032 if (key_eq()(__nd->__value_, __k))
2047 __hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k) const
2049 size_t __hash = hash_function()(__k);
2061 if (key_eq()(__nd->__value_, __k))
2187 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_unique(const _Key& __k)
2189 iterator __i = find(__k);
2199 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_multi(const _Key& __k)
2202 iterator __i = find(__k);
2210 } while (__i != __e && key_eq()(*__i, __k));
2269 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_unique(const _Key& __k) const
2271 return static_cast<size_type>(find(__k) != end());
2277 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_multi(const _Key& __k) const
2280 const_iterator __i = find(__k);
2288 } while (__i != __e && key_eq()(*__i, __k));
2298 const _Key& __k)
2300 iterator __i = find(__k);
2312 const _Key& __k) const
2314 const_iterator __i = find(__k);
2326 const _Key& __k)
2328 iterator __i = find(__k);
2336 } while (__j != __e && key_eq()(*__j, __k));
2346 const _Key& __k) const
2348 const_iterator __i = find(__k);
2356 } while (__j != __e && key_eq()(*__j, __k));