Home | History | Annotate | Download | only in runtime

Lines Matching defs:HashEntry

54     class HashEntry : public FastAllocBase {
78 void setNext(HashEntry *next) { m_next = next; }
79 HashEntry* next() const { return m_next; }
104 HashEntry* m_next;
113 mutable const HashEntry* table; // Table allocated at runtime.
130 ALWAYS_INLINE const HashEntry* entry(JSGlobalData* globalData, const Identifier& identifier) const
136 ALWAYS_INLINE const HashEntry* entry(ExecState* exec, const Identifier& identifier) const
143 ALWAYS_INLINE const HashEntry* entry(const Identifier& identifier) const
147 const HashEntry* entry = &table[identifier.ustring().rep()->existingHash() & compactHashSizeMask];
165 void setUpStaticFunctionSlot(ExecState*, const HashEntry*, JSObject* thisObject, const Identifier& propertyName, PropertySlot&);
176 const HashEntry* entry = table->entry(exec, propertyName);
192 const HashEntry* entry = table->entry(exec, propertyName);
218 const HashEntry* entry = table->entry(exec, propertyName);
237 const HashEntry* entry = table->entry(exec, propertyName);
254 const HashEntry* entry = table->entry(exec, propertyName);
272 const HashEntry* entry = table->entry(exec, propertyName);
292 const HashEntry* entry = table->entry(exec, propertyName);