Home
last modified time | relevance | path

Searched refs:valueNode (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/debugger/
H A Ddebugger_api.cpp1125 int valueNode = TaggedDoubleList::ELEMENTS_START_INDEX; in GetLinkedListValue() local
1128 valueNode = doubleList->GetNextDataIndex(valueNode); in GetLinkedListValue()
1129 currentValue.Update(doubleList->GetElement(valueNode)); in GetLinkedListValue()
1145 int valueNode = TaggedDoubleList::ELEMENTS_START_INDEX; in GetListValue() local
1148 valueNode = singleList->GetNextDataIndex(valueNode); in GetListValue()
1149 currentValue.Update(singleList->GetElement(valueNode)); in GetListValue()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dcontainers_stub_builder.cpp619 DEFVARIABLE(valueNode, VariableType::INT32(), Int32(0)); in ContainersLinkedListCall()
687 valueNode = Int32(TaggedList<TaggedArray>::ELEMENTS_START_INDEX); in ContainersLinkedListCall()
696 valueNode = TaggedGetInt(ContainerGetNode(*thisObj, in ContainersLinkedListCall()
697 Int32Add(*valueNode, Int32(TaggedList<TaggedArray>::NEXT_PTR_OFFSET)), type)); in ContainersLinkedListCall()
698 value = ContainerGetNode(*thisObj, *valueNode, type); in ContainersLinkedListCall()
/arkcompiler/ets_runtime/ecmascript/
H A Dtagged_list.cpp531 int valueNode = ELEMENTS_START_INDEX; in Equal() local
534 valueNode = GetNextDataIndex(valueNode); in Equal()
536 JSTaggedValue value = GetElement(valueNode); in Equal()
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_list.cpp337 int valueNode = TaggedSingleList::ELEMENTS_START_INDEX; in ForEach() local
339 valueNode = singleList->GetNextDataIndex(valueNode); in ForEach()
340 JSTaggedValue value = singleList->GetElement(valueNode); in ForEach()
H A Dcontainers_linked_list.cpp569 int valueNode = TaggedDoubleList::ELEMENTS_START_INDEX; in ForEach() local
571 valueNode = doubleList->GetNextDataIndex(valueNode); in ForEach()
572 JSTaggedValue value = doubleList->GetElement(valueNode); in ForEach()

Completed in 10 milliseconds