Lines Matching full:currentvalue
957 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetArrayListValue() local
960 currentValue.Update(arrayList->Get(thread, index)); in GetArrayListValue()
961 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetArrayListValue()
974 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetDequeValue() local
977 currentValue.Update(deque->Get(index)); in GetDequeValue()
978 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetDequeValue()
997 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetHashMapValue() local
1006 currentValue.Update(node->GetValue()); in GetHashMapValue()
1009 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetHashMapValue()
1062 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLightWeightMapValue() local
1068 currentValue.Update(values->Get(index)); in GetLightWeightMapValue()
1071 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightMapValue()
1086 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLightWeightSetValue() local
1090 currentValue.Update(lightWeightSet->GetValueAt(index)); in GetLightWeightSetValue()
1091 if (currentValue->IsECMAObject()) { in GetLightWeightSetValue()
1093 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightSetValue()
1097 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightSetValue()
1112 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLinkedListValue() local
1117 currentValue.Update(doubleList->GetElement(valueNode)); in GetLinkedListValue()
1118 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLinkedListValue()
1132 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetListValue() local
1137 currentValue.Update(singleList->GetElement(valueNode)); in GetListValue()
1138 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetListValue()
1154 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetPlainArrayValue() local
1160 currentValue.Update(valueArray->Get(index)); in GetPlainArrayValue()
1163 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetPlainArrayValue()
1178 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetQueueValue() local
1182 currentValue.Update(queue->Get(thread, pos)); in GetQueueValue()
1184 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetQueueValue()
1197 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetStackValue() local
1200 currentValue.Update(stack->Get(index)); in GetStackValue()
1201 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetStackValue()
1218 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetTreeMapValue() local
1225 currentValue.Update(iteratedMap->GetValue(entriesIndex)); in GetTreeMapValue()
1228 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeMapValue()
1245 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetTreeSetValue() local
1250 currentValue.Update(iteratedSet->GetKey(entriesIndex)); in GetTreeSetValue()
1251 if (currentValue->IsECMAObject()) { in GetTreeSetValue()
1253 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeSetValue()
1257 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeSetValue()
1271 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetVectorValue() local
1274 currentValue.Update(vector->Get(thread, vector, index)); in GetVectorValue()
1275 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetVectorValue()