Home
last modified time | relevance | path

Searched refs:hashSet (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/storage/
DDatabase.cpp162 HashSet<Database*>* hashSet = guidToDatabaseMap().get(m_guid); in Database() local
163 if (!hashSet) { in Database()
164 hashSet = new HashSet<Database*>; in Database()
165 guidToDatabaseMap().set(m_guid, hashSet); in Database()
168 hashSet->add(this); in Database()
184 HashSet<Database*>* hashSet = guidToDatabaseMap().get(m_guid); in ~Database() local
185 ASSERT(hashSet); in ~Database()
186 ASSERT(hashSet->contains(this)); in ~Database()
187 hashSet->remove(this); in ~Database()
188 if (hashSet->isEmpty()) { in ~Database()
[all …]