Searched defs:StringHash (Results 1 – 1 of 1) sorted by relevance
36 struct StringHash { struct37 static unsigned hash(StringImpl* key) { return key->hash(); } in hash()38 static bool equal(StringImpl* a, StringImpl* b) in equal()68 static unsigned hash(const RefPtr<StringImpl>& key) { return key->hash(); } in hash()69 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) in equal()74 static unsigned hash(const String& key) { return key.impl()->hash(); } in hash()75 static bool equal(const String& a, const String& b) in equal()80 static const bool safeToCompareToEmptyOrDeleted = false;