Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/objects/
Dcompilation-cache-table.h20 class CompilationCacheShape : public BaseShape<HashTableKey*> {
22 static inline bool IsMatch(HashTableKey* key, Object value) { in IsMatch()
26 static inline uint32_t Hash(ReadOnlyRoots roots, HashTableKey* key) { in Hash()
Dcompilation-cache-table.cc133 class StringSharedKey : public HashTableKey {
147 : HashTableKey(CompilationCacheShape::StringSharedHash( in StringSharedKey()
156 : HashTableKey( in StringSharedKey()
211 class RegExpKey : public HashTableKey {
214 : HashTableKey( in RegExpKey()
235 class CodeKey : public HashTableKey {
238 : HashTableKey(key->Hash()), key_(key) {} in CodeKey()
Dhash-table.h292 class HashTableKey {
294 explicit HashTableKey(uint32_t hash) : hash_(hash) {} in HashTableKey() function
300 virtual ~HashTableKey() = default;