Lines Matching full:int
27 int GlobalDictionary::Hash(const JSTaggedValue &key) in Hash()
48 PropertyBox *GlobalDictionary::GetBox(int entry) const in GetBox()
50 int index = GetEntryIndex(entry) + ENTRY_VALUE_INDEX; in GetBox()
54 JSTaggedValue GlobalDictionary::GetValue(int entry) const in GetValue()
59 PropertyAttributes GlobalDictionary::GetAttributes(int entry) const in GetAttributes()
61 int index = GetEntryIndex(entry) + ENTRY_DETAILS_INDEX; in GetAttributes()
65 void GlobalDictionary::SetEntry(const JSThread *thread, int entry, const JSTaggedValue &key, const … in SetEntry()
73 void GlobalDictionary::ClearEntry(const JSThread *thread, int entry) in ClearEntry()
80 void GlobalDictionary::UpdateValueAndAttributes(const JSThread *thread, int entry, const JSTaggedVa… in UpdateValueAndAttributes()
87 void GlobalDictionary::SetAttributes(const JSThread *thread, int entry, const PropertyAttributes &m… in SetAttributes()
89 int index = static_cast<int>(GetEntryIndex(entry) + ENTRY_DETAILS_INDEX); in SetAttributes()
93 void GlobalDictionary::UpdateValue(const JSThread *thread, int entry, const JSTaggedValue &value) in UpdateValue()
98 void GlobalDictionary::GetAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray) const in GetAllKeys()
100 ASSERT_PRINT(offset + EntriesCount() <= static_cast<int>(keyArray->GetLength()), in GetAllKeys()
102 int arrayIndex = 0; in GetAllKeys()
103 int size = Size(); in GetAllKeys()
106 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllKeys()
122 void GlobalDictionary::GetEnumAllKeys(const JSThread *thread, int offset, TaggedArray *keyArray, in GetEnumAllKeys()
125 ASSERT_PRINT(offset + EntriesCount() <= static_cast<int>(keyArray->GetLength()), in GetEnumAllKeys()
127 int arrayIndex = 0; in GetEnumAllKeys()
128 int size = Size(); in GetEnumAllKeys()
131 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetEnumAllKeys()
155 …y::InvalidatePropertyBox(JSThread *thread, const JSHandle<GlobalDictionary> &dictHandle, int entry, in InvalidatePropertyBox()
163 int index = static_cast<int>(originAttr.GetDictionaryOrder()); in InvalidatePropertyBox()
170 int entry, const JSHandle<JSTaggedValue> &oldValue) in InvalidateAndReplaceEntry()