Lines Matching refs:pKey
65 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey, in insert() argument
68 unsigned int index = BaseTy::lookUpBucketFor(pKey); in insert()
82 entry = bucket.Entry = m_EntryFactory.produce(pKey); in insert()
96 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) in erase() argument
99 if (-1 == (index = BaseTy::findKey(pKey))) in erase()
117 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) in find() argument
120 if (-1 == (index = BaseTy::findKey(pKey))) in find()
130 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) const in find()
133 if (-1 == (index = BaseTy::findKey(pKey))) in find()
143 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) const in count()
145 const_chain_iterator bucket, bEnd = end(pKey); in count()
147 for (bucket = begin(pKey); bucket != bEnd; ++bucket) in count()
234 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) in begin() argument
236 return chain_iterator(this, pKey, 0x0); in begin()
244 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) in end() argument
254 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) const in begin()
256 return const_chain_iterator(this, pKey, 0x0); in begin()
264 const typename HashTable<HashEntryTy, HashFunctionTy, EntryFactoryTy>::key_type& pKey) const in end()