Lines Matching refs:HashTable
74 /*static*/ double HashTable::m_defMaxLoadFactor = 0.8;
75 /*static*/ double HashTable::m_defDefGrowFactor = 2.0;
77 HashTable::HashTable(sal_uIntPtr lSize, sal_Bool bOwner, double dMaxLoadFactor, double dGrowFactor) in HashTable() function in HashTable
94 HashTable::~HashTable() in ~HashTable()
120 void* HashTable::GetObjectAt(sal_uIntPtr lPos) const in GetObjectAt()
130 void HashTable::OnDeleteObject(void*) in OnDeleteObject()
135 sal_uIntPtr HashTable::Hash(ByteString const& Key) const in Hash()
171 sal_uIntPtr HashTable::DHash(ByteString const& Key, sal_uIntPtr lOldHash) const in DHash()
195 sal_uIntPtr HashTable::Probe(sal_uIntPtr lPos) const in Probe()
202 sal_Bool HashTable::IsFull() const in IsFull()
207 sal_Bool HashTable::Insert(ByteString const& Key, void* pObject) in Insert()
275 HashItem* HashTable::FindPos(ByteString const& Key) const in FindPos()
336 void* HashTable::Find(ByteString const& Key) const in Find()
352 void* HashTable::Delete(ByteString const& Key) in Delete()
381 double HashTable::CalcLoadFactor() const in CalcLoadFactor()
387 void HashTable::SmartGrow() in SmartGrow()
430 HashTableIterator::HashTableIterator(HashTable const& aTable) in HashTableIterator()