Lines Matching defs:entry
33 inline static int GetKeyIndex(int entry)
35 return OrderHashTableT::TABLE_HEADER_SIZE + entry * GetEntrySize() + ENTRY_KEY_INDEX;
37 inline static int GetValueIndex(int entry)
39 return OrderHashTableT::TABLE_HEADER_SIZE + entry * GetEntrySize() + ENTRY_VALUE_INDEX;
41 inline static int GetEntryIndex(int entry)
43 return OrderHashTableT::TABLE_HEADER_SIZE + entry * GetEntrySize();
52 inline static void InvalidatePropertyBox(JSThread *thread, const JSHandle<GlobalDictionary> &dictHandle, int entry);
55 int entry, const JSHandle<JSTaggedValue> &oldValue);
57 inline bool IsValidateBox(int entry) const;
59 inline PropertyBox *GetBox(int entry) const;
61 inline JSTaggedValue GetValue(int entry) const;
63 inline PropertyAttributes GetAttributes(int entry) const;
65 inline void SetEntry(const JSThread *thread, int entry, const JSTaggedValue &key, const JSTaggedValue &value,
68 inline void ClearEntry(const JSThread *thread, int entry);
70 inline void UpdateValueAndAttributes(const JSThread *thread, int entry, const JSTaggedValue &value,
73 inline void UpdateValue(const JSThread *thread, int entry, const JSTaggedValue &value);
75 inline void SetAttributes(const JSThread *thread, int entry, const PropertyAttributes &metaData);