Home
last modified time | relevance | path

Searched refs:nextTable (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
H A Djs_set_iterator.cpp92 JSTaggedValue nextTable = set->GetNextTable(); in Update() local
93 while (!nextTable.IsHole()) { in Update()
95 set = LinkedHashSet::Cast(nextTable.GetTaggedObject()); in Update()
96 nextTable = set->GetNextTable(); in Update()
H A Djs_map_iterator.cpp100 JSTaggedValue nextTable = map->GetNextTable(); in Update() local
101 while (!nextTable.IsHole()) { in Update()
103 map = LinkedHashMap::Cast(nextTable.GetTaggedObject()); in Update()
104 nextTable = map->GetNextTable(); in Update()
H A Dlinked_hash_table.h201 inline void SetNextTable(const JSThread *thread, JSTaggedValue nextTable) in SetNextTable() argument
203 Set(thread, NEXT_TABLE_INDEX, nextTable); in SetNextTable()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_set.cpp217 JSTaggedValue nextTable = hashSet->GetNextTable(); in ForEach() local
218 while (!nextTable.IsHole()) { in ForEach()
220 hashSet.Update(nextTable); in ForEach()
221 nextTable = hashSet->GetNextTable(); in ForEach()
H A Dbuiltins_map.cpp200 JSTaggedValue nextTable = hashMap->GetNextTable(); in ForEach() local
201 while (!nextTable.IsHole()) { in ForEach()
203 hashMap.Update(nextTable); in ForEach()
204 nextTable = hashMap->GetNextTable(); in ForEach()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dlinked_hashtable_stub_builder.cpp478 DEFVARIABLE(nextTable, VariableType::JS_ANY(), tmpNextTable); in ForEach()
486 BRANCH(TaggedIsHole(*nextTable), &loopExit1, &next1); in ForEach()
490 linkedTable = *nextTable; in ForEach()
491 nextTable = GetNextTable(*linkedTable); in ForEach()

Completed in 5 milliseconds