• Home
  • Raw
  • Download

Lines Matching full:currentvalue

969     JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined());  in GetArrayListValue()  local
972 currentValue.Update(arrayList->Get(thread, index)); in GetArrayListValue()
973 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetArrayListValue()
986 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetDequeValue() local
989 currentValue.Update(deque->Get(index)); in GetDequeValue()
990 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetDequeValue()
1009 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetHashMapValue() local
1018 currentValue.Update(node->GetValue()); in GetHashMapValue()
1021 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetHashMapValue()
1074 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLightWeightMapValue() local
1080 currentValue.Update(values->Get(index)); in GetLightWeightMapValue()
1083 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightMapValue()
1098 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLightWeightSetValue() local
1102 currentValue.Update(lightWeightSet->GetValueAt(index)); in GetLightWeightSetValue()
1103 if (currentValue->IsECMAObject()) { in GetLightWeightSetValue()
1105 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightSetValue()
1109 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightSetValue()
1124 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLinkedListValue() local
1129 currentValue.Update(doubleList->GetElement(valueNode)); in GetLinkedListValue()
1130 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLinkedListValue()
1144 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetListValue() local
1149 currentValue.Update(singleList->GetElement(valueNode)); in GetListValue()
1150 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetListValue()
1166 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetPlainArrayValue() local
1172 currentValue.Update(valueArray->Get(index)); in GetPlainArrayValue()
1175 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetPlainArrayValue()
1190 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetQueueValue() local
1194 currentValue.Update(queue->Get(thread, pos)); in GetQueueValue()
1196 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetQueueValue()
1209 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetStackValue() local
1212 currentValue.Update(stack->Get(index)); in GetStackValue()
1213 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetStackValue()
1230 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetTreeMapValue() local
1237 currentValue.Update(iteratedMap->GetValue(entriesIndex)); in GetTreeMapValue()
1240 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeMapValue()
1257 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetTreeSetValue() local
1262 currentValue.Update(iteratedSet->GetKey(entriesIndex)); in GetTreeSetValue()
1263 if (currentValue->IsECMAObject()) { in GetTreeSetValue()
1265 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeSetValue()
1269 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeSetValue()
1283 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetVectorValue() local
1286 currentValue.Update(vector->Get(thread, vector, index)); in GetVectorValue()
1287 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetVectorValue()