Home
last modified time | relevance | path

Searched defs:HashMapTranslator (Results 1 – 1 of 1) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
DHashMap.h97 struct HashMapTranslator { struct
98 typedef typename ValueType::first_type KeyType;
99 typedef typename ValueType::second_type MappedType;
101 static unsigned hash(const KeyType& key) { return HashFunctions::hash(key); } in hash()
102 static bool equal(const KeyType& a, const KeyType& b) { return HashFunctions::equal(a, b); } in equal()
103 static void translate(ValueType& location, const KeyType& key, const MappedType& mapped) in translate()